re PR libfortran/47154 (END= does not work in namelist read)

2011-01-04  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR libgfortran/47154
	* gfortran.dg/namelist_68.f90: New test.

From-SVN: r168503
This commit is contained in:
Jerry DeLisle 2011-01-05 04:18:39 +00:00
parent 43e0224a58
commit 183440ee5b
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2011-01-04 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libgfortran/47154
* gfortran.dg/namelist_68.f90: New test.
2011-01-04 Eric Botcazou <ebotcazou@adacore.com>
* gnat.dg/unchecked_convert8.ad[sb]: New test.

View File

@ -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