mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 04:43:02 +07:00
Found by property tests GitOrigin-RevId: 581bc8d7a12cc43037a3936126a68cdf3678e884
10 lines
198 B
Java
10 lines
198 B
Java
import java.util.*;
|
|
|
|
class Test {
|
|
|
|
void test(int last)
|
|
{
|
|
for (; <error descr="Cannot resolve symbol 'i'">i</error> < last; <error descr="Cannot resolve symbol 'i'">i</error>++) {
|
|
}
|
|
}
|
|
} |