aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ext/array2.C
blob: 13679af63b24e902f83bf0c83f799fc303d4d4bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// This testcase used to cause a crash on the Alpha.
// Special g++ Options: 
// Build don't link:

struct A {
  int i;
  ~A() { }
};

A f (int n)
{
  A a[n];
}