blob: 35e1f8fa42d2dbfd03ade049cbfb5e6c2de6f485 [file] [log] [blame]
class C {
public int p;
public C(int p) {
this.p = 0
if (p > 0) {
this.p = p
}
}
}