Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/smartcasts/letUsesOwnReceiver.fir.kt
T

7 lines
106 B
Kotlin
Vendored

// Based on KT-9033
fun f(s: String) = s
fun foo(s: String?) {
s?.let { f(s) }
s?.let { f(it) }
}