mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-12 03:35:14 +07:00
824259dfc0
GitOrigin-RevId: 3b908b2eed06b41e08ef1c739d90a299389db8c9
11 lines
155 B
Java
11 lines
155 B
Java
public class Demo {
|
|
void foo(Integer i){
|
|
switch(i) {
|
|
case Types.CHAR:<caret>
|
|
}
|
|
}
|
|
}
|
|
|
|
interface Types {
|
|
int CHAR = 2;
|
|
} |