blob: 2aedb61de84a5e211847db30f8447260986b6978 [file] [log] [blame]
class Test {
void test(boolean b) {
int x = 2;
if (b) {
x = 1;
}
}
}