blob: eae23ffdf2d1d7cb29b3ac67457fc374b3e35a92 [file] [log] [blame]
// PR c++/85028
struct A;
template < typename > struct B
{
B (int, A = A()) : f (0) {} // { dg-error "incomplete type" }
int f;
};
B < int > b (0);