blob: 298668e4a615bdc357ce14989b1224a1dfc9e9ee [file] [log] [blame]
public class QQQ {
{
new Outer(){
void foo(){
new Inner(){
void method() {
super.method();
}
};
}
};
}
}
class Outer{
class Inner{
void method(){
}
}
}