2 20030903-1.c from the execute part of the gcc torture tests.
9 #pragma disable_warning 85
12 /* Test that we don't let stmt.c think that the enumeration's values are
13 the entire set of possibilities. Such an assumption is false for C,
14 but true for other languages. */
16 enum X
{ X1
= 1, X2
, X3
, X4
};
17 static volatile enum X test
= 0;
21 testTortureExecute (void)
33 static void y(int x
) { ASSERT (0); }