Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / continuation_7.f90
blob02602e86a3657e2213c837a724a45f9929adc9c0
1 ! { dg-do compile }
2 ! { dg-options "-Wall -std=f95" }
3 ! There should only two warnings be printed.
4 ! PR fortran/30968
5 print *, "Foo bar&
6 &Bar foo"
7 print *, "Foo bar&
8 Bar foo" ! { dg-warning "Missing '&' in continued character constant" }
9 print *, "Foo bar"&
10 &, "Bar foo"
11 print *, "Foo bar"&
12 , "Bar foo"
14 print '(&
15 a)', 'Hello' ! { dg-warning "Missing '&' in continued character constant" }
16 print '(&
17 &a)', 'Hello'
18 print '('&
19 &//'a)', 'Hello'
20 print '('&
21 // "a)", 'Hello'
22 end