mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
12 lines
298 B
Java
12 lines
298 B
Java
// "Remove switch branch '-/*x*/1'" "true-preview"
|
|
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
|
|
}
|
|
}
|
|
}
|
|
}
|