mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-24 04:07:09 +07:00
16 lines
248 B
Java
16 lines
248 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
public class Test {
|
|
@Nullable public final String o;
|
|
|
|
public Test(String q) { o = q; }
|
|
|
|
public void test() {
|
|
if (o != null) {
|
|
bar();
|
|
o.hashCode();
|
|
}
|
|
}
|
|
|
|
public void bar() {}
|
|
} |