der_init_4.f90

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· F90 代码 · 共 16 行

F90
16
字号
! PR13930! We were trying to assugn a default initializer to dummy variables.program der_init_4  type t    integer :: i = 42  end type  call foo(t(5))containssubroutine foo(a)  type (t), intent(in) :: a  if (a%i .ne. 5) call abortend subroutineend program

⌨️ 快捷键说明

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