mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-27 22:09:57 +07:00
22 lines
338 B
Java
22 lines
338 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class ASD {
|
|
static void foo(Object any) {
|
|
boolean a = false;
|
|
boolean b = false;
|
|
while (true) {
|
|
boolean trg = bar() == any;
|
|
|
|
a = a || trg;
|
|
b = b || !trg;
|
|
|
|
if (b && a) break;
|
|
}
|
|
}
|
|
|
|
@NotNull
|
|
static Object bar() {
|
|
return new Object();
|
|
}
|
|
}
|