Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromUsage/afterSameNameMethods.java

14 lines
215 B
Java

// "Create method 'test'" "true"
public class Test {
public Test(Impl impl) {
impl.test(test());
}
private String test() {
return null;
}
}
class Impl {
void test(String s) {}
}