OSDN Git Service

PR fortran/33197
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / contains_empty_1.f03
1 ! { dg-do compile }
2 ! { dg-options "-std=f2003 -pedantic" }
3 program test
4   print *, 'hello there'
5 contains
6 end program test ! { dg-error "Fortran 2008: CONTAINS statement without" }
7
8 module truc
9   integer, parameter :: answer = 42
10 contains
11 end module truc ! { dg-error "Fortran 2008: CONTAINS statement without" }