mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
7 lines
204 B
Java
7 lines
204 B
Java
class Test {
|
|
public static void main(String[] args) {
|
|
Object o = null;
|
|
if (<error descr="Operator '==' cannot be applied to 'java.lang.Object', 'int'">o == 1</error>) {}
|
|
if (1 == o) {}
|
|
}
|
|
} |