IDEA-83969 code completion in switch/case: auto/unboxing not checked with code completion

This commit is contained in:
peter
2012-06-20 19:33:06 +02:00
parent 2c595e64ee
commit dd15d0e6df
4 changed files with 25 additions and 2 deletions
@@ -0,0 +1,11 @@
public class Demo {
void foo(Integer i){
switch(i) {
case Types.CH<caret>
}
}
}
interface Types {
int CHAR = 2;
}
@@ -0,0 +1,11 @@
public class Demo {
void foo(Integer i){
switch(i) {
case Types.CHAR<caret>
}
}
}
interface Types {
int CHAR = 2;
}