mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-22 20:49:52 +07:00
14 lines
248 B
Java
14 lines
248 B
Java
public class Test1 {
|
|
public static class A{
|
|
protected void foo(){}
|
|
}
|
|
|
|
public static void main(String[] args){
|
|
new A(){
|
|
protected void foo(){
|
|
super.<ref>foo();
|
|
}
|
|
};
|
|
}
|
|
}
|