mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
[java-completion] IJ-CR-111599 IDEA-324653 Completion for objects with enums. Add test that it doesn't work for old Java
GitOrigin-RevId: 32b02cb0092b53093cf63dbea95df0c2e2e74724
This commit is contained in:
committed by
intellij-monorepo-bot
parent
ec5af74d07
commit
dcd9e3d954
@@ -0,0 +1,11 @@
|
||||
class Main {
|
||||
|
||||
public enum En {
|
||||
HHHH
|
||||
}
|
||||
public void foo(Object o) {
|
||||
switch (o) {
|
||||
case En.HH<caret>
|
||||
}
|
||||
}}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
class Main {
|
||||
|
||||
public enum En {
|
||||
HHHH
|
||||
}
|
||||
public void foo(Object o) {
|
||||
switch (o) {
|
||||
case En.HH<caret>
|
||||
}
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user