blob: c07a0001fb01a8ffe461e94eae67d07a5b6eed1c [file] [log] [blame]
package p;
//private, nonstatic, final
class A{
private final class Inner extends A {
private Inner(int i) {
super(i);
}
void f(){
x();
}
}
A(int i){
}
void f(){
new Inner(1);
}
void x(){}
}