mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
IDEA would support latest preview only GitOrigin-RevId: 6609e80acced9e1be07880c14de239f75afcc78b
25 lines
492 B
Java
25 lines
492 B
Java
// "Remove unreachable branches" "true"
|
|
class Main {
|
|
static void fff(int x) {
|
|
if (x == 5) {
|
|
int i = 5;
|
|
//1
|
|
//2
|
|
//3
|
|
//4
|
|
//6
|
|
//7
|
|
//other
|
|
{
|
|
if (Math.random() > 0.5) return;
|
|
int i = 6;
|
|
System.out.println("five-ten-fifteen"); //5
|
|
}
|
|
}
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
fff();
|
|
}
|
|
}
|