repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline.
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
enum_1.f90
blob
0156cb576f08cbfbeb25c1a1d1a1dd4fd9da3a2a
1
! { dg-do run }
2
! Program to test ENUM parsing
3
4
program
main
5
implicit none
6
enum
,
bind
(
c
)
7
enumerator
::
red
,
black
8
enumerator blue
9
end
enum
10
if
(
red
/=
0
)
call
abort
11
end program
main