blob: 851926336c8e52317b8d25bacb5e9980a869e50a [file] [log] [blame]
public class Demo {
void foo(Integer i){
switch(i) {
case Types.CHAR<caret>
}
}
}
interface Types {
int CHAR = 2;
}