Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gfortran.dg
/
namelist_98.f90
blob: 19a7e869f924440143ce6eea1d9b8fe75219fdac [
file
] [
log
] [
blame
]
!
{
dg
-
do
compile
}
!
pr98686
implicit
none
real
::
x
,
m
namelist
/
NML
/
x
,
m
,
q
!
{
dg
-
error
"must be declared before the namelist*"
}
integer
::
q
x
=
1.0
m
=
2.0
q
=
3
write
(*,
nml
=
NML
)
end