mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
20 lines
258 B
Java
20 lines
258 B
Java
class Test10 {
|
|
void test() {
|
|
newMethod();
|
|
|
|
newMethod();
|
|
}
|
|
|
|
private void newMethod() {
|
|
new Super() {
|
|
int get() {
|
|
return 0;
|
|
}
|
|
};
|
|
}
|
|
}
|
|
class Super {
|
|
int get() {
|
|
return 1;
|
|
}
|
|
} |