lookup3.C   [plain text]


namespace A{
  int i;
  int f();
}

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

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