The name analysis does not honor the visibility / accessibility information.
The following source:
class A { private class B { } }
class C: A.B {
}
finds the class A.B for use by C.
Is this the right behaviour?
Log in to post a comment.