1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
8 lines
205 B
Kotlin
8 lines
205 B
Kotlin
operator fun <K, V> MutableMap<K, V>.set(k : K, v : V) = put(k, v)
|
|
|
|
fun box() : String {
|
|
val map = HashMap<String,String>()
|
|
map["239"] = "932"
|
|
return if(map["239"] == "932") "OK" else "fail"
|
|
}
|