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

9 lines
135 B
Java

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