-
Bug
-
Resolution: Fixed
-
P3
-
9
-
b129
-
Verified
compilation of this code:
public class Test {
class Base {
protected int i = 1;
}
class Sub extends Base {
void func() {
Sub.super.i += 10;
}
}
}
produces NPE in the compiler
public class Test {
class Base {
protected int i = 1;
}
class Sub extends Base {
void func() {
Sub.super.i += 10;
}
}
}
produces NPE in the compiler
- is blocked by
-
JDK-8161639 javac, duplicate keys are added to maps binaryOperators and unaryOperators at Operators
-
- Closed
-
- relates to
-
JDK-8071241 Investigate alternate strategy for type-checking operators
-
- Closed
-