55a4c40970
^KT-38444 In Progress
11 lines
216 B
Kotlin
Vendored
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
|
|
}
|
|
}
|