mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 06:11:42 +07:00
IDEA-118551 Duplicated enum field in completion
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
import static C.A.*;
|
||||
class C {
|
||||
enum A {Abc}
|
||||
|
||||
public static void main(A a) {
|
||||
switch (a) {
|
||||
case A<caret>
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
import static C.A.*;
|
||||
class C {
|
||||
enum A {Abc}
|
||||
|
||||
public static void main(A a) {
|
||||
switch (a) {
|
||||
case Abc:<caret>
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user