“InheritanceNestedClass” (Solution)
Answer
Explanation
The Bar.Quux
class is declared in private
scope, you can't use it from a child class. Thus, the call of the Quux
method from the Baz
class will be used the Foo.Quux
class.
Last updated