OSDN Git Service

Formatting fixes.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.ns / friend2.C
1 // { dg-do assemble  }
2 namespace A{
3   void foo();
4 }
5
6
7 namespace B{
8 class B{
9   friend void A::foo();
10 };
11 }