(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
new4.C
// { dg-do assemble  }
// Origin: Mark Mitchell <mark@codesourcery.com>

struct S {
  S();

  virtual int f() {
    new S[+f()];
    return 0;
  }
};