(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
init/
value8.C
// PR c++/45315

struct A
{
  A ();
};

template < int > struct B : A
{
  void foo ()
  {
    new B < 0 > ();
  }
};

int main()
{
  B<1>().foo();
}