view gcc/testsuite/gfortran.dg/analyzer/pr93778.f90 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
line wrap: on
line source

program h0
  type bl
     integer jq
  end type bl
  type qn
     type (bl), dimension(3) :: xi
  end type qn
  type (qn) ro
  namelist /i2/ ro
  read(10, nml = i2)
end program h0