From c839d34b9307036fb8b13781112a1cb27888007e Mon Sep 17 00:00:00 2001 From: Jerry DeLisle Date: Sat, 21 Apr 2007 22:00:38 +0000 Subject: [PATCH] re PR fortran/31495 (Is this continuation line legal?) 2007-04-21 Jerry DeLisle PR fortran/31495 * gfortran.dg/continuation_8.f90: New test. From-SVN: r124026 --- gcc/testsuite/ChangeLog | 5 +++++ gcc/testsuite/gfortran.dg/continuation_8.f90 | 9 +++++++++ 2 files changed, 14 insertions(+) create mode 100644 gcc/testsuite/gfortran.dg/continuation_8.f90 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index e5772ffb52f..44a2bbb81f2 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2007-04-21 Jerry DeLisle + + PR fortran/31495 + * gfortran.dg/continuation_8.f90: New test. + 2007-04-21 Andrew Pinski PR C/30265 diff --git a/gcc/testsuite/gfortran.dg/continuation_8.f90 b/gcc/testsuite/gfortran.dg/continuation_8.f90 new file mode 100644 index 00000000000..251af99ef03 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/continuation_8.f90 @@ -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 -- 2.30.2