mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 08:52:52 +07:00
12 lines
278 B
Java
12 lines
278 B
Java
public class Test {
|
|
public static void main(String[] args) {
|
|
//noinspection SillyAssignment
|
|
args = args;
|
|
int i = 0;
|
|
if (i == 0) {
|
|
|
|
} else //noinspection SillyAssignment
|
|
<error descr="Not a statement">i == i;</error>
|
|
}
|
|
}
|