aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/namelist_91.f90
blob: 672e3f61d6edc5e54b481e145d66abdf19786900 (plain)
1
2
3
4
5
6
7
8
9
! { dg-do compile }
! PR78659 Spurious "requires DTIO" reported against namelist statement
program p
   type t
     integer :: k
   end type
   class(t), allocatable :: x
   namelist /nml/ x
end