New J2K: Fix existing test data
This commit is contained in:
committed by
Ilya Kirillov
parent
76b73542d9
commit
b13f7431f2
@@ -1,12 +1,12 @@
|
||||
package demo
|
||||
|
||||
internal class Map {
|
||||
fun <K, V> put(k: K?, v: V?) {}
|
||||
fun <K, V> put(k: K?, v: V) {}
|
||||
}
|
||||
|
||||
internal class U {
|
||||
fun test() {
|
||||
val m = Map()
|
||||
m.put<String?, Int?>(null, 10)
|
||||
m.put<String, Int>(null, 10)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user