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