aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/friend2.C
blob: 7d4a6c87d87a9aa9502c6587f66c22fcf54c88ea (plain)
1
2
3
4
5
6
7
8
9
10
11
//Build don't link:
namespace A{
  void foo();
}


namespace B{
class B{
  friend void A::foo();
};
}