mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
16 lines
387 B
Java
16 lines
387 B
Java
// "Remove switch branch '"bar"'" "true-preview"
|
|
class Main {
|
|
public void test() {
|
|
switch ("foo") {
|
|
case "baz":
|
|
System.out.println("foo");
|
|
break;
|
|
case "<caret>bar":
|
|
int i = 2;
|
|
class Foo {}
|
|
System.out.println("hello"+new Foo()+i);
|
|
//oops
|
|
}
|
|
}
|
|
}
|