mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 02:32:34 +07:00
GitOrigin-RevId: fd3331c90f28706c98d60134126defb1355e595b
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;
|
|
}
|
|
}
|