mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 11:40:50 +07:00
27 lines
316 B
Java
27 lines
316 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
import java.io.File;
|
|
|
|
class Some {
|
|
void foo(String[] args) {
|
|
boolean b = false;
|
|
|
|
if (hashCode() == 2) {
|
|
b = new File("a").exists();
|
|
}
|
|
|
|
boolean b2 = hashCode() == 4;
|
|
if (!b2) {
|
|
return;
|
|
}
|
|
|
|
if (b) {
|
|
|
|
}
|
|
|
|
if (b) {
|
|
|
|
}
|
|
}
|
|
}
|