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