mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
21 lines
337 B
Java
21 lines
337 B
Java
public class a {
|
|
public void login() {
|
|
System.out.println();
|
|
}
|
|
}
|
|
|
|
class b extends a {
|
|
public void doL<caret>ogin() throws Exception {
|
|
super.login();
|
|
}
|
|
|
|
public void foo() throws Exception {
|
|
new Runnable() {
|
|
public void run() {
|
|
b.super.login();
|
|
}
|
|
}.run();
|
|
}
|
|
}
|
|
|