PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / bitfld-21.c
blob66f9330f1905378e59d643b19a82303966703750
1 /* Test for bit-field widths not integer constant expressions but
2 folding to integer constants: PR 42439. */
3 /* { dg-do compile } */
4 /* { dg-options "-O2 -pedantic-errors" } */
6 void
7 f (void)
9 const int m = 1;
10 ((void)(sizeof(struct { int i:!!m; }))); /* { dg-error "not an integer constant expression" } */