mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 18:58:31 +07:00
Fixes EA-261429 - AE: JavaParserUtil.parseFragment GitOrigin-RevId: 3939658513b2b1bec5eca693e50386fd4fe2e58e
10 lines
136 B
Java
10 lines
136 B
Java
// "Wrap with block" "true"
|
|
class X {
|
|
void test(int x) {
|
|
switch(x) {
|
|
case 1 -> { /**/
|
|
;
|
|
}
|
|
}
|
|
}
|
|
} |