mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 11:47:50 +07:00
IDEA would support latest preview only GitOrigin-RevId: 6609e80acced9e1be07880c14de239f75afcc78b
13 lines
262 B
Java
13 lines
262 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
|
|
//1
|
|
/*x*/
|
|
}
|
|
}
|
|
}
|
|
}
|