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.
22 lines
520 B
Kotlin
Vendored
22 lines
520 B
Kotlin
Vendored
// !WITH_NEW_INFERENCE
|
|
|
|
fun create(): Map<String, String> = null!!
|
|
|
|
operator fun <K, V> Map<K, V>.iterator(): Iterator<Map.Entry<K, V>> = null!!
|
|
|
|
operator fun <K, V> Map.Entry<K, V>.component1() = key
|
|
|
|
operator fun <K, V> Map.Entry<K, V>.component2() = value
|
|
|
|
class MyClass {
|
|
private var m: Map<String, String>? = null
|
|
fun foo(): Int {
|
|
var res = 0
|
|
m = create()
|
|
// See KT-7428
|
|
<!UNSAFE_CALL!>for ((k, v) in m)
|
|
res += (k.length + v.length)<!>
|
|
return res
|
|
}
|
|
}
|