1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
10 lines
154 B
Kotlin
10 lines
154 B
Kotlin
|
|
fun <K: Any, V: Any> foo(k: K, v: V) {
|
|
val map = HashMap<K, V>()
|
|
val old = map.put(k, v)
|
|
}
|
|
|
|
fun box(): String {
|
|
foo("", "")
|
|
return "OK"
|
|
} |