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

7 lines
134 B
Kotlin
Vendored

fun String.foo(arg: Int) = this[arg]
fun calc(x: String?) {
// x should be non-null in arguments list
x?.foo(x.length - 1)
}