mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
15 lines
309 B
Java
15 lines
309 B
Java
// "Create missing switch branch 'Sub1'" "true-preview"
|
|
sealed interface I {}
|
|
final class Sub1 implements I {}
|
|
final class Sub2 implements I {}
|
|
|
|
class Test {
|
|
void test(I i) {
|
|
switch (i<caret>) {
|
|
case Sub1 sub1 && Math.random() > 0.5:
|
|
break;
|
|
case Sub2 sub2:
|
|
break;
|
|
}
|
|
}
|
|
} |