OSDN Git Service

* lib/gcc-dg.exp (dg-skip-if): New function.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.ext / array2.C
1 // { dg-do assemble  }
2 // { dg-options "-w" }
3 // This testcase used to cause a crash on the Alpha.
4
5 struct A {
6   int i;
7   ~A() { }
8 };
9
10 A f (int n)
11 {
12   A a[n];
13 }