mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
12 lines
248 B
Java
12 lines
248 B
Java
import java.util.List;
|
|
class C {
|
|
void foo(int[] a, List<Integer> b) {
|
|
int i = 1;
|
|
int n = <selection>bar(a[i], b.get(i))</selection>;
|
|
System.out.println(n);
|
|
}
|
|
|
|
int bar(int a, int b) {
|
|
return a + b;
|
|
}
|
|
} |