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

10 lines
166 B
Java

// "Create method 'test'" "true"
public class Test {
public Test(Impl impl) {
impl.test(te<caret>st());
}
}
class Impl {
void test(String s) {}
}