aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/lookup3.C
blob: cd1aaaef517b85c8351be99a63777b5803c5ec33 (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;
}

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