OSDN Git Service

Restrict DR 757 change to C++0x mode.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.ns / friend1.C
1 // { dg-do assemble  }
2 namespace A{
3   void f(int);
4 }
5
6 class X{
7   friend void A::f(int);
8 };