PR tree-optimization/84740
[official-gcc.git] / gcc / testsuite / gcc.dg / asan / pr80168.c
blobde2334551bb845cc701e1b58f19463331469ed21
1 /* PR sanitizer/80168 */
2 /* { dg-do compile } */
4 int a;
6 int
7 foo (void)
9 struct S { int c[a]; int q : 8; int e : 4; } f;
10 f.e = 4;
11 return f.e;