mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 10:21:05 +07:00
11 lines
158 B
Java
11 lines
158 B
Java
public class Demo {
|
|
void foo(Integer i){
|
|
switch(i) {
|
|
case Types.CHAR -> <caret>
|
|
}
|
|
}
|
|
}
|
|
|
|
interface Types {
|
|
int CHAR = 2;
|
|
} |