mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Fixes IDEA-294142 Complete Current Statement action can affect the next independent statement GitOrigin-RevId: cf6c81b5b62997a8925c2d68bf14533abb135d2c
6 lines
107 B
Java
6 lines
107 B
Java
class X {{
|
|
int[] a = new int[3];
|
|
long res = 0;
|
|
for (int val : a)<caret>
|
|
System.out.println(res);
|
|
}} |