private_type_8.f90

来自「用于进行gcc测试」· F90 代码 · 共 22 行

F90
22
字号
! { dg-do compile }! A public subroutine can have private-type, dummy arguments! in Fortran 2003 (but not in Fortran 95).! See private_type_1.f90 for the F95 test.!module modboom  implicit none  private  public:: dummysub  type:: intwrapper    integer n  end type intwrappercontains  subroutine dummysub(size, arg_array)   type(intwrapper) :: size   real, dimension(size%n) :: arg_array   real :: local_array(4)  end subroutine dummysubend module modboom! { dg-final { cleanup-modules "modboom" } }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?