summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/enum_9.f90
blob: e735cf87772ba17875e1373e15c69bf13686bc55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
! { 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