mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
17 lines
398 B
Java
17 lines
398 B
Java
// "Remove switch branch '"baz"'" "true-preview"
|
|
class Main {
|
|
public void test() {
|
|
switch ("foo") {
|
|
case "qux":
|
|
case "bar":
|
|
class Foo {}
|
|
int i;
|
|
i = 2;
|
|
System.out.println("hello"+new Foo()+i);
|
|
//oops
|
|
default:
|
|
System.out.println("oops");
|
|
}
|
|
}
|
|
}
|