mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-31 06:43:38 +07:00
21 lines
392 B
Java
21 lines
392 B
Java
/**
|
|
* Created by IntelliJ IDEA.
|
|
* User: ik
|
|
* Date: 22.01.2003
|
|
* Time: 11:15:19
|
|
* To change this template use Options | File Templates.
|
|
*/
|
|
public class Test1 {
|
|
public static class A{
|
|
protected void foo(){}
|
|
}
|
|
|
|
public static void main(String[] args){
|
|
new A(){
|
|
protected void foo(){
|
|
super.<ref>foo();
|
|
}
|
|
};
|
|
}
|
|
}
|