PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / c99-left-shift-1.c
blob9a73049fa221dad746ff934c1e7a5f2340aa3206
1 /* { dg-do compile } */
2 /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
4 enum E { A = -2 << 1 }; /* { dg-error "constant expression" } */
5 int i = -1 << 0; /* { dg-error "constant expression" } */
7 int
8 f (int i)
10 switch (i)
11 case -1 << 0: break; /* { dg-error "constant expression" } */