|
Relates :
|
.
The changes for 4903103 were incorrect and incorrectly accepts programs
like this:
public class Outer {
class Inner1 extends Outer {}
class Inner2 extends Inner1 {}
}
This example is borrowed from puzzler 90 in Java Puzzlers by Bloch and Gafter.
|