Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gfortran.dg / namelist_2.f90
blobb92e459415ce9b8d018f285304e3e27c1ec4c0a1
1 ! { dg-do compile }
2 ! Check that variable with intent(in) cannot be a member of a namelist
3 subroutine namelist_2(x)
4 integer,intent(in) :: x
5 namelist /n/ x
6 read(*,n) ! { dg-error "is INTENT" "" }
7 end subroutine namelist_2