aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/friend1.C
blob: 859a84ec3ec83212dcb30adc55cdb5d5522aeed2 (plain)
1
2
3
4
5
6
7
8
// Build don't link:
namespace A{
  void f(int);
}

class X{
  friend void A::f(int);
};