mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 19:42:48 +07:00
bd1a21a02a
GitOrigin-RevId: ec42a9047ba63b0cbaddd8357d11ae2ed56ed6b6
12 lines
290 B
Java
12 lines
290 B
Java
// "Remove switch branch '-/*x*/1'" "true"
|
|
class Main {
|
|
static void fff(int x) {
|
|
if (x > 0) {
|
|
switch (x) {
|
|
case 2 -> System.out.println("two"); //2
|
|
case -<caret>/*x*/1 -> System.out.println("one"); //1
|
|
}
|
|
}
|
|
}
|
|
}
|