OSDN Git Service

* parser.c (cp_parser_class_specifier): Set class location to that
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.jason / enum5.C
1 // { dg-do run  }
2 enum { a = 1 };
3
4 int main(void)
5 {
6   int l = -1;
7
8   return ! (l < a);             // testcase fails if a is unsigned
9 }