Files
2022-11-16 15:02:47 +00:00

11 lines
244 B
Java

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