e72ddbcbfe
To do so, inside the root cause of inapplicable candidate errors, we will record expected/actual type of receiver, if any. That will help identifying inapplicable calls on nullable receiver.
11 lines
205 B
Kotlin
Vendored
11 lines
205 B
Kotlin
Vendored
fun foo(y: String?) {
|
|
var x: String? = ""
|
|
if (x != null) {
|
|
with(y?.let { x = null; it }) {
|
|
this.<!UNSAFE_CALL!>length<!>
|
|
x.length
|
|
}
|
|
x.length
|
|
}
|
|
}
|