Commit df842ed9 by Jerry DeLisle

re PR fortran/44371 (STOP parsing rejects valid code)

2010-06-01  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR fortran/44371
	* gfortran.dg/error_stop_1.f08: New test.
	* gfortran.dg/error_stop_2.f08: New test.

From-SVN: r160134
parent 022d9260
2010-06-01 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/44371
* gfortran.dg/error_stop_1.f08: New test.
* gfortran.dg/error_stop_2.f08: New test.
2010-06-01 Jason Merrill <jason@redhat.com>
DR 990
......
! { dg-do run }
program stopper
real, dimension(5,5,5) :: i
error stop size(i) ! { dg-shouldfail "ERROR STOP 125" }
end program stopper
! { dg-do compile }
! PR44371 STOP parsing rejects valid code.
real, dimension(5,5,5) :: i
character(1) c, y
y = 'y'
read(y,*) c
if (c=='x') stop size(i); if (c=='X') stop
if (c=='y') stop size(i) if (c=='Y') stop ! { dg-error "Syntax error in STOP" }
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment