mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 14:17:48 +07:00
GitOrigin-RevId: 643a7bf62a04c9eb35bf554f3f3f5cc648188cbe
10 lines
134 B
Java
10 lines
134 B
Java
class Foo {
|
|
public int foo(String str) {
|
|
return switch (str) {
|
|
case "x" -> {
|
|
yield <caret>
|
|
}
|
|
};
|
|
}
|
|
}
|