mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
13 lines
186 B
Java
13 lines
186 B
Java
class Foo {
|
|
void foo(int i) {
|
|
switch (i) {
|
|
case Constants.BAR0: return;
|
|
case Constants.BAR1:<caret>
|
|
}
|
|
}
|
|
}
|
|
|
|
interface Constants {
|
|
int BAR0 = 0;
|
|
int BAR1 = 1;
|
|
} |