Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createConstructorFromCall/after2.java
T
2022-10-31 13:46:49 +00:00

12 lines
200 B
Java

// "Create constructor" "true-preview"
public class Test {
public void main2() {
new MyCollection(this);
}
}
class MyCollection {
public MyCollection(Test test) {
}
}