(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
enum_1.f90
! { dg-do run }
! Program to test ENUM parsing 

program main
  implicit none
  enum, bind (c)
    enumerator :: red, black
    enumerator blue
  end enum
  if (red /= 0) STOP 1
end program main