mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 17:47:53 +07:00
GitOrigin-RevId: 4d6a5487576dbbc4aca9c89b067eec8218aff686
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 -> { /**/
|
|
;
|
|
}
|
|
}
|
|
}
|
|
} |