Is it possible to inherit from a nested class from outside of the enclosing class? For example:
class A
{
class B { int x; }
}
class C : B
{
int get () { return x; }
}
Is it possible to inherit from a nested class from outside of the enclosing class? For example:
class A
{
class B { int x; }
}
class C : B
{
int get () { return x; }
}