mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
13 lines
173 B
Java
13 lines
173 B
Java
class Foo {
|
|
void foo(int i) {
|
|
switch (i) {
|
|
case Constants.BAR0: return;
|
|
case B<caret>:
|
|
}
|
|
}
|
|
}
|
|
|
|
interface Constants {
|
|
int BAR0 = 0;
|
|
int BAR1 = 1;
|
|
} |