Files
2022-08-01 18:23:37 +00:00

8 lines
162 B
Java

// "Replace 'switch' with 'if'" "true-preview"
class Test {
void test(Object obj) {
<caret>switch (obj) {
case obj instanceof String -> {}
}
}
}