introduce parameter, delegate: process supermethod accordingly (IDEA-57162)

This commit is contained in:
anna
2010-08-05 15:54:28 +04:00
parent 5b994eb25e
commit 308e0665e1
6 changed files with 93 additions and 6 deletions
@@ -0,0 +1,14 @@
abstract class A {
abstract void xxx();
}
class B implements A {
public void xxx() {
System.out.println(<selection>239</selection>);
}
static {
A a = new B();
a.xxx();
}
}