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; }
}


Reply via email to