PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / Wno-all.f90
bloba61db6d0e956a1cbeaea770394c45e147524e73b
1 ! PR 30437 Test for negative Wall
2 ! { dg-do run }
3 ! { dg-options "-Wall -Wno-all" }
4 program main
5 character (len=40) &
7 c = "Hello, &
8 world!" ! { dg-bogus "Warning: Missing '&' in continued character constant" }
9 if (c.ne.&
10 "Hello, world!")&
11 STOP 1;end program main