OSDN Git Service

2010-11-13 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / continuation_8.f90
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