mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
11 lines
192 B
Java
11 lines
192 B
Java
class Test {
|
|
interface X{}
|
|
|
|
void test(X x1, X x2, boolean b) {
|
|
if (x1 == null && b) {
|
|
x1 = x2;
|
|
}
|
|
X x3 = x1 != null ? x1 : x2;
|
|
System.out.println(x3.hashCode());
|
|
}
|
|
} |