mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-21 09:46:34 +07:00
dd689d3a39
GitOrigin-RevId: 6b6405ee4491ad1d58947547c40df6fb2d291ab7
12 lines
239 B
Java
12 lines
239 B
Java
// "Remove switch branch '"bar"'" "true-preview"
|
|
class Main {
|
|
public void test() {
|
|
switch ("foo") {
|
|
case "baz":
|
|
System.out.println("foo");
|
|
break;
|
|
//oops
|
|
}
|
|
}
|
|
}
|