Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createEnumConstantFromUsage/beforeVarargs.java
2014-12-06 12:06:31 +03:00

18 lines
291 B
Java

// "Create 'enum' constant 'CRIME'" "true"
import java.util.*;
class AutomaticTypeInference {
AutomaticTypeInference(List<E> gs) {
}
public static void main(String[] args) {
new AutomaticTypeInference(Arrays.asList(E.ACTION, E.CRI<caret>ME));
}
enum E {
ACTION;
}
}