Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromUsage/afterThisCall.java
2012-05-16 12:26:08 +04:00

14 lines
279 B
Java

// "Create Method 'f'" "true"
public class A {
public A() {
this(f());
}
private static int f() {
<caret><selection>return 0; //To change body of created methods use File | Settings | File Templates.</selection>
}
public A(int i) {
}
}