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

6 lines
135 B
Kotlin
Vendored

data class MyClass(val x: String?)
fun foo(y: MyClass): Int {
val z = y.x?.subSequence(0, y.x.length)
return z?.length ?: -1
}