Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createMethodFromUsage/afterThisCall.java
2010-06-25 12:46:40 +04:00

14 lines
279 B
Java

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