mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
16 lines
336 B
Java
16 lines
336 B
Java
// "Remove unreachable branches" "true-preview"
|
|
class Main {
|
|
static void fff() {
|
|
switch ("one") {
|
|
case "<caret>one":
|
|
System.out.println("one");
|
|
case "two":
|
|
System.out.println("two");
|
|
}
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
fff();
|
|
}
|
|
}
|