blob: 480957bb5ee88cbe36f8153a9e97c6138aacb380 [file] [log] [blame]
// PR c++/25638
struct A { ~A(); };
struct B : A
{
template<int> friend A::~A(); // { dg-error "cannot be declared as a template" }
};