blob: 741b749ba64b38190d10b3d5246ca21eaedf35aa [file] [log] [blame]
class C {
public Object x;
public C(Object x, boolean b) {
if (b) {
this.x = x;
}
}
}