Retro68/gcc/gcc/testsuite/gfortran.dg/namelist_1.f90
2018-12-28 16:30:48 +01:00

8 lines
214 B
Fortran

! { dg-do compile }
! Check that private entities in public namelists are rejected
module namelist_1
public
integer,private :: x
namelist /n/ x ! { dg-error "cannot be member of PUBLIC namelist" }
end module