mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
12 lines
205 B
Java
12 lines
205 B
Java
class Test {
|
|
void bar() {
|
|
int size = 10;
|
|
int array[] = new int[size];
|
|
int array2[] = new int[size];
|
|
|
|
int i = 0;
|
|
|
|
<selection>int sum = array[i];
|
|
sum += array2[i];</selection>
|
|
}
|
|
} |