Files
openide/java/java-tests/testData/refactoring/introduceParameter/beforeGenerateDelegateInSuperInterface.java

14 lines
181 B
Java

interface A {
void xxx();
}
class B implements A {
public void xxx() {
System.out.println(<selection>239</selection>);
}
static {
A a = new B();
a.xxx();
}
}