-
Bug
-
Resolution: Fixed
-
P4
-
6
FULL PRODUCT VERSION :
javac 1.6.0_01
ADDITIONAL OS VERSION INFORMATION :
Win XP (SP2)
A DESCRIPTION OF THE PROBLEM :
This worked in 1.5
public class Test {
private abstract interface X {
static abstract class Y {
private abstract class Z {}
}
}
private static abstract class A {
private static class B extends Test.X.Y {
private class C extends Test.X.Y.Z {}
}
}
/** Creates a new instance of Test */
public Test() {
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
}
}
but not in 1.6 anymore:
Test.java:24: an enclosing instance that contains Test.X.Y.Z is required
private class C extends Test.X.Y.Z {}
1 error
REPRODUCIBILITY :
This bug can be reproduced always.
CUSTOMER SUBMITTED WORKAROUND :
not update to 1.6?
javac 1.6.0_01
ADDITIONAL OS VERSION INFORMATION :
Win XP (SP2)
A DESCRIPTION OF THE PROBLEM :
This worked in 1.5
public class Test {
private abstract interface X {
static abstract class Y {
private abstract class Z {}
}
}
private static abstract class A {
private static class B extends Test.X.Y {
private class C extends Test.X.Y.Z {}
}
}
/** Creates a new instance of Test */
public Test() {
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
}
}
but not in 1.6 anymore:
Test.java:24: an enclosing instance that contains Test.X.Y.Z is required
private class C extends Test.X.Y.Z {}
1 error
REPRODUCIBILITY :
This bug can be reproduced always.
CUSTOMER SUBMITTED WORKAROUND :
not update to 1.6?
- relates to
-
JDK-4787017 REGRESSION:javac doesn't compile files generated by jaxb-1.0-beta
-
- Resolved
-
-
JDK-4903103 Can't compile subclasses of inner classes
-
- Closed
-
-
JDK-4689050 implicit outer instance for constructing inner class: how is it selected?
-
- Closed
-
-
JDK-6569091 javac 6 incompatibility or javac 5 bug
-
- Closed
-
-
JDK-6708938 Synthetic super-constructor call should never use 'this' as a qualifier
-
- Closed
-