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