OSDN Git Service

* g++.old-deja/g++.eh/cleanup2.C: New test.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.ext / array2.C
1 // This testcase used to cause a crash on the Alpha.
2 // Special g++ Options: 
3 // Build don't link:
4
5 struct A {
6   int i;
7   ~A() { }
8 };
9
10 A f (int n)
11 {
12   A a[n];
13 }