blob: 46c0d4d802c201805316c2ec8dc61bb34f70fa42 [file] [log] [blame]
package nameconflict_out;
public class TestBlocks {
public void main() {
if (true) {
int x= 1;
}
if (true) {
int x= 1;
}
}
private void foo() {
int x= 1;
}
}