blob: cd1aaaef517b85c8351be99a63777b5803c5ec33 [file] [log] [blame]
namespace A{
int i;
int f();
}
int A::f()
{
return i;
}
main()
{
return A::f();
}