mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-02 16:39:28 +07:00
25 lines
358 B
Java
25 lines
358 B
Java
/**
|
|
* Created by IntelliJ IDEA.
|
|
* User: ik
|
|
* Date: 23.01.2003
|
|
* Time: 18:44:34
|
|
* To change this template use Options | File Templates.
|
|
*/
|
|
public class Inner1 {
|
|
private int a(){
|
|
return 0;
|
|
}
|
|
|
|
private class A extends B{
|
|
{
|
|
int j = <ref>a();
|
|
}
|
|
}
|
|
}
|
|
|
|
class B {
|
|
public int a(){
|
|
return 0;
|
|
}
|
|
}
|