Files
openide/java/java-tests/testData/refactoring/extractMethod/ReassignedVarAfterCall.java
Dmitry Jemerov b7e66aee44 test++
2009-09-10 20:21:16 +04:00

8 lines
187 B
Java

class A {
public void test() {
<selection>int count=0;
for(int j=0; j<100; j++) count++;</selection>
count=0;
for(int j=0; j<100; j++) count++;
}
}