Consider the following enum:
package test40;
public enum MyEnum {
FOO, BAR;
}
And the following Groovy class:
package test40
class Test40 {
void foo() {
MyEnum e = MyEnum.FOO
switch(e) {
case MyEnum.FO|
}
}
}
Let the cursor be at "|" and invoke code assist to complete MyEnum.FOO: no suggestion is given.
Consider the following enum:
And the following Groovy class:
Let the cursor be at "|" and invoke code assist to complete
MyEnum.FOO: no suggestion is given.