blob: 33c795e806500a5ede7f3539e51023376541d613 [file] [log] [blame]
// "Reuse previous variable 'i' declaration" "true"
import java.io.*;
class a {
void f(int i) {
i = 234 / 5 + 7;
}
}