Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromUsage/after5.java
2014-12-06 12:06:31 +03:00

12 lines
200 B
Java

// "Create method 'test'" "true"
public class Test {
static void test(int i) {}
public Test() {
test();
}
private void test() {
<caret><selection></selection>
}
}