1 /* PR tree-optimization/86741 - ICE in -Warray-bounds indexing into
2 an object of incomplete type
4 { dg-options "-O2 -Wall" } */
16 struct S
*b
= (struct S
*)&v
;
21 void test_incomplete_enum (void)
24 struct S
*b
= (struct S
*)&e
;
31 struct S
*b
= (struct S
*)&f
;
36 /* { dg-prune-output "taking address of expression of type .void." } */