Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createClassFromUsage/afterInNewArgs.java

9 lines
118 B
Java

// "Create Class 'Foo'" "true"
public class Test {
void foo() {
new Test(Foo.FIELD);
}
}
public class Foo {
}