mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
10 lines
280 B
Java
10 lines
280 B
Java
// "Split values of 'switch' branch" "true-preview"
|
|
class C {
|
|
void foo(Object o) {
|
|
String s = "";
|
|
switch (o) {
|
|
case Number n<caret>, null -> s = "x";
|
|
default ->throw new IllegalStateException("Unexpected value: " + o);
|
|
}
|
|
}
|
|
} |