Files
2023-01-11 16:33:04 +00:00

10 lines
153 B
Java

class Foo {
void foo(String a) {
switch (a) {
case "x":break;
case "asdf":
<caret>
}
}
}