1 /* Test that we don't let stmt.c think that the enumeration's values are
2 the entire set of possibilities. Such an assumption is false for C,
3 but true for other languages. */
5 enum X
{ X1
= 1, X2
, X3
, X4
};
6 static volatile enum X test
= 0;
21 static void y(int x
) { abort (); }