re PR fortran/31495 (Is this continuation line legal?)

2007-04-21  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR fortran/31495
	* gfortran.dg/continuation_8.f90: New test.

From-SVN: r124026
This commit is contained in:
Jerry DeLisle 2007-04-21 22:00:38 +00:00
parent 7be97ac71e
commit c839d34b93
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-04-21 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/31495
* gfortran.dg/continuation_8.f90: New test.
2007-04-21 Andrew Pinski <andrew_pinski@playstation.sony.com>
PR C/30265

View File

@ -0,0 +1,9 @@
! { dg-do run }
! PR31495 Is this continuation legal?
program print_ascertain
character (len=50) :: str
str = "hello world &
& &
&!"
if (str.ne."hello world !") call abort
end program print_ascertain