blob: 431297ff89b5553032f1907780402541913bd9a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
! { dg-do run }
! { dg-options "-fshort-enums" }
! { dg-options "-fshort-enums -Wl,--no-enum-size-warning" { target arm_eabi } }
! 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) STOP 1
if (black /= 127) STOP 2
if (blue /= 128) STOP 3
end program main
|