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