2008-07-06 Kai Tietz <kai.tietz@onevision.com>
[official-gcc.git] / gcc / testsuite / gfortran.dg / Wall.f90
bloba11c4b7fd15f8691991f707ffcd196250005a043
1 ! { dg-do run }
2 ! { dg-options -Wall }
3 ! PR 30437 Test for Wall
4 program main
5 character (len=40) &
7 c = "Hello, &
8 world!" ! { dg-warning "Warning: Missing '&' in continued character constant" }
9 if (c.ne.&
10 "Hello, world!")&
11 call abort();end program main