aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/continuation_8.f90
blob: 251af99ef0321bfad2d4e30eab5ff03cfc79716a (plain)
1
2
3
4
5
6
7
8
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