Files
Alexandr Suhinin 9c7991944f extract method test: separate formatting tests
GitOrigin-RevId: 26fd0636cfc3cba75f1c09cc6ff0ceaab43d40ae
2020-03-31 12:32:01 +00:00

10 lines
204 B
Java

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>
}
}
}