diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/namelist_68.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/namelist_68.f90 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/namelist_68.f90 b/gcc/testsuite/gfortran.dg/namelist_68.f90 new file mode 100644 index 000000000..903f9fbbc --- /dev/null +++ b/gcc/testsuite/gfortran.dg/namelist_68.f90 @@ -0,0 +1,9 @@ +! { dg-do run } +! PR47154 END= does not work in namelist read + program foo + real :: a + namelist /b/a + open(10,status="scratch") + read (10,nml=b,end=100) + 100 continue + end |