summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/debug/dwarf2/c99-typedef1.c
blob: b7bd66a602315369563deef95a8acd78c8554803 (plain)
1
2
3
4
5
6
7
8
9
// { dg-options "-std=iso9899:1999 -gdwarf-2" }

void f() {
  int n = 3;
  typedef int T[n++];
  
  T t;
  t[0] = 7;
}