der_init_3.f90

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

F90
13
字号
! PR15365! Default initializers were being missedprogram main  type xyz     integer :: x = 123  end type xyz  type (xyz) :: a  !! ok  type (xyz) b    !!! not initialized !!!  if (a%x.ne.123) call abort  if (b%x.ne.123) call abortend

⌨️ 快捷键说明

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