namespace ns
{
abstract class Base
{
void Setup() { print("Base::Setup()"); }
}
class Derived : ns::Base
{
void Setup()
{
ns::Base::Setup(); // "Namespace 'ns::Base' doesn't exist"
print("Derived::Setup()");
}
}
}
Changing the line above to just Base::Setup() works.