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

10 lines
184 B
Kotlin
Vendored

class My(val z: Int) {
var x: Int = 0
constructor(arg: Int?): this(arg ?: 42) {
var y: Int?
y = arg
if (y != null) {
x = y
}
}
}