056daeaadb
#KT-5974 fixed
10 lines
291 B
Kotlin
10 lines
291 B
Kotlin
// KT-258 Support equality constraints in type inference
|
|
|
|
import java.util.*
|
|
|
|
fun test() {
|
|
val attributes : HashMap<String, String> = HashMap()
|
|
attributes["href"] = "1" // inference fails, but it shouldn't
|
|
}
|
|
|
|
fun <K, V> MutableMap<K, V>.set(key : K, value : V) {}//= this.put(key, value) |