aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/array5.C
blob: 9ac745c0dc483d516bacb29dd2584aeb2269ab01 (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link:
// We tried to create a temporary of unknown size and crashed.

extern int a1[];
extern int a2[];
int foo(int p)
{
  int x = (p ? a1 : a2)[1];
  return x;
}