Files
2023-07-05 12:09:22 +00:00

10 lines
176 B
Java

// "Remove switch branch 'Integer ii when true'" "true-preview"
class Test {
Integer i = 1;
void test() {
switch (i) {
case Object o:
break;
}
}
}