[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git] / gcc / testsuite / g++.dg / eh / anon1a.cc
blobba161ac2b01e716e3027fe3203aaae6fb8a43180
1 namespace {
2 struct A
4 virtual void f();
5 };
7 void A::f() { }
10 void g() { throw A(); }