1 // { dg-options "-std=iso9899:1999 -gdwarf" }
2 
f()3 void f() {
4   int n = 3;
5   typedef int T[n++];
6 
7   T t;
8   t[0] = 7;
9 }
10