Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/pullUp/after1.java

10 lines
149 B
Java

// "Pull method 'foo' to 'Int'" "true"
public class Test implements Int {
@Override
public void foo(){}
}
interface Int {
void foo();
}