blob: 8fdb60b8d25c9ed043215e08b2c9006695a1f4d8 [file] [log] [blame]
public class a {
public void login() {
System.out.println();
}
}
class b extends a {
public void doLogin() throws Exception {
super.login();
}
public void foo() throws Exception {
new Runnable() {
public void run() {
doLogin();
}
}.run();
}
}