mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
10 lines
144 B
Java
10 lines
144 B
Java
// "Wrap with block" "true-preview"
|
|
class X {
|
|
void test(int x) {
|
|
switch(x) {
|
|
case 1 -> { /**/
|
|
;
|
|
}
|
|
}
|
|
}
|
|
} |