2017-12-08 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gfortran.dg / Wall.f90
blob64c95a9c094613d1aee7af38d492b2c709464bf5
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 "Missing '&' in continued character constant" }
9 if (c.ne.&
10 "Hello, world!")&
11 call abort();end program main