blob: 73cb4c483283c2e1acfb50ea4957389247cc8cbd [file]
fun foo() {
class My {
val x: Int
init {
var y: Int?
y = 42
x = y.hashCode()
}
}
}