mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 09:39:37 +07:00
16 lines
176 B
Java
16 lines
176 B
Java
class Dot3{
|
|
class A{
|
|
int a = 0;
|
|
int foo(){
|
|
}
|
|
}
|
|
static {
|
|
|
|
Object a = new A(){
|
|
static int foo(){
|
|
int c = super.<caret>
|
|
}
|
|
};
|
|
}
|
|
}
|