mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 10:48:09 +07:00
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 ->
|
|
}
|
|
}
|
|
} |