Details
Description
This program should compile without a warning:
public class X<T> {
private X<?>.Inner inner;
public X() {
this.inner = new X().new Inner();
}
private class Inner {}
}
public class X<T> {
private X<?>.Inner inner;
public X() {
this.inner = new X().new Inner();
}
private class Inner {}
}