mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
16 lines
222 B
Java
16 lines
222 B
Java
public class Test {
|
|
void foo() {
|
|
new A() {
|
|
void fe() {
|
|
Test.this.newMethod();
|
|
}
|
|
}
|
|
}
|
|
|
|
private void newMethod() {
|
|
System.out.println("");
|
|
}
|
|
}
|
|
class A {
|
|
void newMethod(){}
|
|
} |