aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/20030331-2.c
blob: 2fce78ea97c10bb94369fb3c7ae8fc7933f9643d (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];
 
  void bar() {
    printf("%p\n",in[0]);
  }
}