PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / continuation_8.f90
blobb465827026685ed181f9825b2d1bd7278a9129c7
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 !") STOP 1
9 end program print_ascertain