blob: 8e069bb08e721771d33180aca61b67edd25c6c0c [file] [log] [blame]
class Test {
public void method() {
int i = 0;
while(i < 100) {
int temp = i++ * 2;
sum += temp;
}
}
}