mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
19 lines
282 B
Java
19 lines
282 B
Java
// "Create enum constant 'CRIME'" "false"
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
class AutomaticTypeInference {
|
|
|
|
AutomaticTypeInference(List<E> gs) {
|
|
}
|
|
|
|
{
|
|
|
|
new AutomaticTypeInference(Arrays.asList(E.ACTION, this.CRI<caret>ME));
|
|
|
|
}
|
|
|
|
enum E {
|
|
ACTION;
|
|
}
|
|
} |