aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/20030331-2.c
blob: 0509d8aad879f7399bc3fac55dbb6407bbd1d020 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-options "" }

extern int printf (const char *, ...);

int foo() {
  int yd;
  float in[1][yd];
 
  static void bar() {
    printf("%p\n",in[0]);
  }
}