2011-05-23 Tom de Vries <tom@codesourcery.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / continuation_8.f90
blob251af99ef0321bfad2d4e30eab5ff03cfc79716a
1 ! { dg-do run }
2 ! PR31495 Is this continuation legal?
3 program print_ascertain
4 character (len=50) :: str
5 str = "hello world &
6 & &
7 &!"
8 if (str.ne."hello world !") call abort
9 end program print_ascertain