Files
2015-10-16 11:23:30 +03:00

10 lines
202 B
Java

public class Foo {
public void foo() {
for(int i = 0; i < 10; i++) {
}
for(int thisShouldBeWrapped = 0; thisShouldBeWrapped < 10; thisShouldBeWrapped++) {
}
}
}