1 /* { dg-do compile } */
2 /* { dg-options "-std=gnu99" } */
4 /* These are crash tests related to PR middle-end/6994; see also
5 g++.dg/ext/vla1.C. Note that at present A and C cannot be inlined. */
7 static inline void A (int i
)
9 struct S
{ int ar
[1][i
]; } s
;
19 static inline void C (int i
)
21 union U
{ int ar
[1][i
]; } u
;