mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 02:33:48 +07:00
10 lines
203 B
Java
10 lines
203 B
Java
import org.jetbrains.annotations.*;
|
|
class Class1 {
|
|
public void f(@Nullable Object o) {
|
|
o = o != null ? o : Class2.O;
|
|
o.toString();
|
|
}
|
|
}
|
|
class Class2 {
|
|
static final Object O = new Object();
|
|
} |