mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 20:50:54 +07:00
12 lines
151 B
Java
12 lines
151 B
Java
|
|
class CL {
|
|
void g() {
|
|
int j;
|
|
if (1 == 1)
|
|
j = 9;
|
|
j <caret>= 0;
|
|
while (j==0)
|
|
j = 2;
|
|
}
|
|
}
|