Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/smartcasts/withChangesToNull.fir.kt
T
2020-06-03 10:43:37 +03:00

11 lines
216 B
Kotlin
Vendored

fun foo(y: String?) {
var x: String? = ""
if (x != null) {
with(y?.let { x = null; it }) {
this.<!INAPPLICABLE_CANDIDATE!>length<!>
x.length
}
x.length
}
}