* MAINTAINERS: Add a note that maintainership also includes web
[official-gcc.git] / gcc / testsuite / g++.dg / parse / dtor16.C
blobff445c38865f5d33c309a1e620dffef8c3d4551b
1 // PR c++/25666
3 struct A { ~A(); };
5 struct B
7   template<int> friend A::~A();  // { dg-error "member template" }
8 };