2008-07-06 Kai Tietz <kai.tietz@onevision.com>
[official-gcc.git] / gcc / testsuite / g++.dg / parse / dtor6.C
blob3333161c39986feb6f0731f807bb546834210956
1 // PR c++/25638
3 struct A { ~A(); }; // { dg-error "candidate" }  
5 struct B : A
7   template<int> friend A::~A(); // { dg-error "match" }
8 };