LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / vla-9.c
blob506a1a2eb14ca2ec8604f5f1a04296023260f575
1 /* { dg-do compile } */
2 /* { dg-options "-std=c99 -pedantic-errors -W -Wall" } */
3 /* PR c/28280 */
5 void f(__SIZE_TYPE__ d)
7 typedef int t[d];
8 t *g = (__typeof (g)) d;
9 (void) g;