URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.fortran-torture/] [execute/] [enum_2.f90] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
! Program to test the incremental assignment of enumerators
program main
implicit none
enum, bind (c)
enumerator :: red = 4 , yellow, blue
enumerator green
end enum
enum, bind (c)
enumerator :: sun = -10 , mon, tue
enumerator :: wed = 10, sat
end enum
if (red /= 4 ) call abort
if (yellow /= (red + 1)) call abort
if (blue /= (yellow + 1)) call abort
if (green /= (blue + 1)) call abort
if (sun /= -10 ) call abort
if (mon /= (sun + 1)) call abort
if (tue /= (mon + 1)) call abort
if (wed /= 10) call abort
if (sat /= (wed+1)) call abort
end program main
Go to most recent revision | Compare with Previous | Blame | View Log