blob: 24713f425bc316e6b4936674bd0deb17eb03ce24 [file]
class My {
val x: Int
init {
var y: Int? = null
if (y != null) {
x = <!DEBUG_INFO_SMARTCAST!>y<!>.hashCode()
}
else {
x = 0
}
}
}