blob: 7ec503300ed4f2bf22aa544cc8d627ffa52e5663 [file] [log] [blame]
class Test {
void foo(String[] ss, String[] bb) {
for(int i = 0; i < ss.length; i++) {
<selection>
System.out.println(ss[i]);
System.out.println(bb[i]);
</selection>
}
}
}