Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createClassFromUsage/afterInNewArgs.java
2014-12-06 12:41:46 +03:00

9 lines
118 B
Java

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