array2.C   [plain text]


// This testcase used to cause a crash on the Alpha.
// Special g++ Options: -w
// Build don't link:

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

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