URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [enum_9.f90] - Rev 193
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }
! { dg-options "-fshort-enums" }
! Program to test enumerations when option -fshort-enums is given
program main
implicit none
enum, bind (c)
enumerator :: red, black = 127
enumerator blue
end enum
if (red /= 0) call abort
if (black /= 127) call abort
if (blue /= 128) call abort
end program main
Go to most recent revision | Compare with Previous | Blame | View Log