Files
openide/java/java-tests/testData/codeInsight/template/postfix/templates/switch/enumExprInit.java
T

7 lines
102 B
Java

public enum Foo {
A, B, C;
void f() {
Foo foo = Foo.values()[0].switch<caret>
}
}