1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
18 lines
256 B
Kotlin
18 lines
256 B
Kotlin
|
|
object O {
|
|
val mmmap = HashMap<String, Int>();
|
|
|
|
init {
|
|
fun doStuff() {
|
|
mmmap.put("two", 2)
|
|
}
|
|
doStuff()
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
val r = O.mmmap["two"]
|
|
if (r != 2) return "Fail: $r"
|
|
return "OK"
|
|
}
|