mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
13 lines
160 B
Java
13 lines
160 B
Java
|
|
class CL {
|
|
void g() {
|
|
int j;
|
|
if (1 == 1)
|
|
j = 9;
|
|
while (j==0) {
|
|
j = 0;
|
|
j = 2;
|
|
}
|
|
}
|
|
}
|