mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: f0de0aee91d2b41e1ebb6e7a815851cbbf5b8447
9 lines
190 B
Java
9 lines
190 B
Java
// "Replace with old style 'switch' statement" "true"
|
|
|
|
class CaseNullDefault {
|
|
void bar(Object o) {
|
|
switc<caret>h (o) {
|
|
case null, default -> System.out.println("1");
|
|
}
|
|
}
|
|
} |