blob: 99d3ca8c18d782277af704444161acfec6ef56b8 [file] [log] [blame]
// PR c++/85262
// { dg-options -fpermissive }
struct A {};
template<int> struct B : A
{
B()
{
A::A(A()); // { dg-warning "constructor" }
}
};
B<0> b;