2 // GROUPS passed nested-classes
3 // This is the first line of file ||t5.C||.
5 // This code initializing an unnamed union inside a class appears to
6 // be legal C++ input and compiles fine with AT&T cfront 3.0.1, but
7 // gcc 2.4.5 complains about multiple initializations of the same
12 enum Type { undefined, slong, ulong, ldouble };
14 Expr(Type type, const Expr* initializer);
24 // Construct an undefined expression.