Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createInnerClassFromNew/beforeInInterface.java
2014-12-06 14:31:18 +03:00

8 lines
186 B
Java

// "Create inner class 'MyCollection'" "true"
import java.util.*;
public interface I {
public static void main() {
Collection c = new <caret>MyCollection(1, "test");
}
}