1 #include <limits.h>
2 enum test {
3   z = 0,
4   c = UINT_MAX + 1LL
5 } x = z;
6 
main()7 int main() {
8   return x != z;
9 }
10