[TD] Union ir dumps of different test files

This commit is contained in:
Dmitriy Novozhilov
2021-01-20 17:29:53 +03:00
committed by TeamCityServer
parent 4752924b13
commit 77115cea92
32 changed files with 556 additions and 286 deletions
@@ -0,0 +1,14 @@
class V8Array {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
fun box(): String {
val array: V8Array = V8Array()
val list: List<String> = toList(array = array) as List<String>
return list.get(index = 0)
}