mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
12 lines
230 B
Java
12 lines
230 B
Java
// "Remove unreachable branches" "true-preview"
|
|
class Main {
|
|
static void fff() {
|
|
System.out.println("one");
|
|
System.out.println("two");
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
fff();
|
|
}
|
|
}
|