der_init_2.f90

来自「linux下编程用 编译软件」· F90 代码 · 共 16 行

F90
16
字号
! PR 15314! We were looking at the type of the initialization expression, not the type! of the field.program der_init_2  implicit none  type foo    integer :: a(3) = 42    integer :: b = 123  end type  type (foo) :: v  if ((v%b .ne. 123) .or. any (v%a .ne. 42)) call abort ();end program

⌨️ 快捷键说明

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