PR c++/82069 - ICE with lambda in template
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr77309.c
blob5bdbc0a0b83abd929f4498012c57da973090d4e3
1 /* { dg-do run } */
3 int a, b;
5 int main ()
7 long c = 1 % (2 ^ b);
8 c = -c & ~(~(b ^ ~b) || a);
10 if (c >= 0)
11 __builtin_abort ();
13 return 0;