mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
7 lines
158 B
Java
7 lines
158 B
Java
public class Assignment {
|
|
public void test() {
|
|
int x = 0, y = 0;
|
|
<warning descr="'x' should probably not be assigned to 'y'">y</warning> = x;
|
|
}
|
|
}
|