arm: Add .type and .size to __gnu_cmse_nonsecure_call [PR115360]
[official-gcc.git] / gcc / testsuite / gfortran.dg / namelist_91.f90
blob672e3f61d6edc5e54b481e145d66abdf19786900
1 ! { dg-do compile }
2 ! PR78659 Spurious "requires DTIO" reported against namelist statement
3 program p
4 type t
5 integer :: k
6 end type
7 class(t), allocatable :: x
8 namelist /nml/ x
9 end