Files
2023-01-15 05:39:32 +00:00

11 lines
244 B
Java

class C {
void foo(Object o) {
switch (o) {
case Number n -> bar("A");
case String s -> bar("B");
case null -> bar("A");
default -> bar("C");
}
}
void bar(String s){}
}