mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
10 lines
176 B
Java
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;
|
|
}
|
|
}
|
|
} |