URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [enum_6.f90] - Rev 841
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }
! Program to test ENUM parsing errors
program main
implicit none
integer :: i = 1
enum, bind (c)
enumerator :: sun, mon = 2
i = 2 ! { dg-error "Unexpected" }
enumerator :: wed = 1
end enum
i = 1
enum, bind (c) ! { dg-error "Unexpected" }
enumerator :: red, black = 2 ! { dg-error "ENUM definition statement expected" }
enumerator :: blue = 1 ! { dg-error "ENUM definition statement expected" }
end enum ! { dg-excess-errors "Expecting END PROGRAM" }
end program main
Go to most recent revision | Compare with Previous | Blame | View Log