aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/lookup3.C
blob: 3ace233c1b9609b419768a4c8f73c4c1f3d3f635 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace A{
  int i;
  int f();
}

int A::f()
{
  return i;
}

int main()
{
  return A::f();
}