mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 19:24:40 +07:00
GitOrigin-RevId: 6b6405ee4491ad1d58947547c40df6fb2d291ab7
13 lines
270 B
Java
13 lines
270 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
|
|
//1
|
|
/*x*/
|
|
}
|
|
}
|
|
}
|
|
}
|