2006-10-28 Andrew Pinski <andrew_pinski@playstation.sony.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / namelist_1.f90
blobe4154e9181b52bf93c02b2ded33592e332350f34
1 ! { dg-do compile }
2 ! Check that private entities in public namelists are rejected
3 module namelist_1
4 public
5 integer,private :: x
6 namelist /n/ x ! { dg-error "cannot be member of PUBLIC namelist" "" }
7 end module
9 ! { dg-final { cleanup-modules "namelist_1" } }