blob: a885a2412796a883be99c3aae5282c664643fbc5 [file] [log] [blame]
// PR c++/58583
// { dg-do compile { target c++11 } }
template<int> struct A
{
int i = (A<0>(), 0); // { dg-error "recursive instantiation of default" }
};
A<0> a;
template<int N> struct B
{
B* p = new B<N>; // { dg-error "recursive instantiation of default" }
};
B<1> x;
struct C
{
template<int N> struct D
{
D* p = new D<0>;
};
};