blob: 9db530e626643ecd75660fca0b9d2316a2a96acb [file]
class My {
val x: Int
init {
var y: Int? = null
if (y != null) {
x = y.hashCode()
}
else {
x = 0
}
}
}