mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 19:38:50 +07:00
GitOrigin-RevId: c755b2eb3a30a8011ea665f13effc7224594818b
9 lines
173 B
Java
9 lines
173 B
Java
public class SemicolonAfterSwitchExpression {
|
|
void test() {
|
|
int x = switch (0) {
|
|
case 0 -> 1;
|
|
case 1 -> 2;
|
|
default -> 3;
|
|
};
|
|
}
|
|
} |