blob: 3333161c39986feb6f0731f807bb546834210956 [file] [log] [blame]
// PR c++/25638
struct A { ~A(); }; // { dg-error "candidate" }
struct B : A
{
template<int> friend A::~A(); // { dg-error "match" }
};