mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 09:39:37 +07:00
12 lines
222 B
Java
12 lines
222 B
Java
// "Remove unreachable branches" "false"
|
|
class Test {
|
|
Test() {
|
|
this(1 + switch ((Integer) 1) {
|
|
case <caret>Integer i && i == 1 -> i;
|
|
case Integer i -> i;
|
|
});
|
|
}
|
|
|
|
Test(int n) {
|
|
}
|
|
} |