blob: 072e93c2ae9e72e6638a2fe6889e2182d9d3a628 [file] [log] [blame]
/* Test for bit-field widths not integer constant expressions but
folding to integer constants: PR 42439. */
/* { dg-do compile } */
/* { dg-options "-O2" } */
void
f (void)
{
const int m = 1;
((void)(sizeof(struct { int i:!!m; })));
}