mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 00:42:21 +07:00
da9c5dd049
GitOrigin-RevId: 184ebf34bd15c46f54685cf06521cee1d903b056
10 lines
128 B
Java
10 lines
128 B
Java
// "Create block" "true"
|
|
class X {
|
|
void foo(int i) {
|
|
switch(i) {
|
|
case 1 -> {
|
|
}
|
|
case 2 ->
|
|
}
|
|
}
|
|
} |