mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 23:39:57 +07:00
- fix cases with additional default GitOrigin-RevId: f0770e912fc36f988d2814dcdbf1721a9ba626c2
9 lines
164 B
Java
9 lines
164 B
Java
// "Replace with 'switch' expression" "true-preview"
|
|
|
|
class X {
|
|
void test(Integer i) {
|
|
int a = switch (o) {
|
|
default -> 3;
|
|
};
|
|
}
|
|
} |