mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
Fixes IDEA-73881 "Complete Current Statement" incorrectly handles for with non-block loop statement GitOrigin-RevId: 0e92756e7536f5d939db3f2f0ed42c8e716076c3
6 lines
102 B
Java
6 lines
102 B
Java
class X {{
|
|
int[] a = new int[3];
|
|
for (int i = 0; i < a.length; ++i) {
|
|
a[i] = 1;
|
|
}
|
|
}} |