Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createConstructorFromCall/after2.java
T

12 lines
288 B
Java

// "Create Constructor" "true"
public class Test {
public void main2() {
new MyCollection(this);
}
}
class MyCollection {
public MyCollection(Test test) {
<selection>//To change body of created methods use File | Settings | File Templates.</selection>
}
}