2bd5a1f196
It will be needed for structure mutability inference #KT-21467 fixed #KT-32609 fixed #KT-32572 fixed #KT-24677 fixed
12 lines
175 B
Kotlin
Vendored
12 lines
175 B
Kotlin
Vendored
package demo
|
|
|
|
internal class Map {
|
|
fun <K, V> put(k: K, v: V) {}
|
|
}
|
|
|
|
internal class U {
|
|
fun test() {
|
|
val m = Map()
|
|
m.put<String?, Int>(null, 10)
|
|
}
|
|
} |