blob: a0dbf10bd5dfe3e1ab3a278867c6ac27559e912f [file] [log] [blame]
internal class C(p: Int) {
var p: Int = 0
init {
this.p = 0
if (p > 0) {
this.p = p
}
}
}