2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / array5.C
blobe32bbea5a08bf84673ede85ec315f4082ac6f4c2
1 // { dg-do assemble  }
2 // We tried to create a temporary of unknown size and crashed.
4 extern int a1[];
5 extern int a2[];
6 int foo(int p)
8   int x = (p ? a1 : a2)[1];
9   return x;