Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/varInInitializer.fir.kt
T

12 lines
178 B
Kotlin
Vendored

class My {
val x: Int
init {
var y: Int? = null
if (y != null) {
x = y.hashCode()
}
else {
x = 0
}
}
}