OSDN Git Service

Revert the accidental checkin in revision 158918.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / init / enum1.C
1 enum test {
2   acceptable = -1,
3   unacceptable = 0xffffffffffffffffLL
4 }; // { dg-error "" }
5
6 enum test t = acceptable, u = unacceptable;
7
8 int main() {
9     return 0;
10 }