aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/contains.f90
blob: 221488afbe1bd576e04160d702ece5e0616c7ff7 (plain)
1
2
3
4
5
6
7
8
9
10
11
! { dg-do compile }
! { dg-options "-std=f2003" }
! Check whether empty contains are allowd
! PR fortran/29806
module x
 contains
end module x ! { dg-error "CONTAINS statement without FUNCTION or SUBROUTINE statement" }

program y
  contains
end program y ! { dg-error "CONTAINS statement without FUNCTION or SUBROUTINE statement" }