OSDN Git Service

New test case.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.ns / friend1.C
1 // Build don't link:
2 namespace A{
3   void f(int);
4 }
5
6 class X{
7   friend void A::f(int);
8 };