aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/enum_7.f90
blob: 9971a51184ed155dedd3b3aedee6df259b2df9ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
! { dg-do compile }
! Program to test ENUM parsing errors 

program main
  implicit none

  enum, bind (c)
    enumerator :: sun, mon = 2    
    enum, bind (c)  ! { dg-error "Unexpected" }
      enumerator :: apple, mango
    end enum  
    enumerator :: wed = 1  ! { dg-error "ENUM definition statement expected" }  
  end enum  ! { dg-error "Expecting END PROGRAM" }  

end program main