(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
meminit1.C
// { dg-options "-std=gnu++98" }
template <class T >
struct S
{
  S() : S() {} // { dg-message "delegating constructors" }
}; // { dg-error "delegates to itself" "" { target *-*-* } .-1 }

S<int> s;