Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromUsage/after5.java
2013-05-06 20:55:21 +02: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>
}
}