mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 05:18:02 +07:00
GitOrigin-RevId: ec42a9047ba63b0cbaddd8357d11ae2ed56ed6b6
10 lines
153 B
Java
10 lines
153 B
Java
class MyTest {
|
|
void m(int i) {
|
|
String s = switch (i) {
|
|
default -> {
|
|
String temp = "abc";
|
|
yield temp;
|
|
}
|
|
};
|
|
}
|
|
} |