mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
IDEA-83969 code completion in switch/case: auto/unboxing not checked with code completion
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
public class Demo {
|
||||
void foo(Integer i){
|
||||
switch(i) {
|
||||
case Types.CH<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
interface Types {
|
||||
int CHAR = 2;
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
public class Demo {
|
||||
void foo(Integer i){
|
||||
switch(i) {
|
||||
case Types.CHAR<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
interface Types {
|
||||
int CHAR = 2;
|
||||
}
|
||||
Reference in New Issue
Block a user