1// { dg-do run  }
2enum { a = 1 };
3
4int main(void)
5{
6  int l = -1;
7
8  return ! (l < a);		// testcase fails if a is unsigned
9}
10