a4c7619c89
Without this commit, JVM name mapping logic in BE does not work for FIR, because FIR cannot use old BuiltInsPackageFragmentImpl descriptor. In this commit we add our own implementation thus fixing a pack of FIR black box tests.
25 lines
563 B
Kotlin
Vendored
25 lines
563 B
Kotlin
Vendored
// KJS_WITH_FULL_RUNTIME
|
|
class ArrayWrapper<T>() {
|
|
val contents = ArrayList<T>()
|
|
|
|
fun add(item: T) {
|
|
contents.add(item)
|
|
}
|
|
|
|
operator fun plus(b: ArrayWrapper<T>): ArrayWrapper<T> {
|
|
val result = ArrayWrapper<T>()
|
|
result.contents.addAll(contents)
|
|
result.contents.addAll(b.contents)
|
|
return result
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
val v1 = ArrayWrapper<String>()
|
|
val v2 = ArrayWrapper<String>()
|
|
v1.add("foo")
|
|
v2.add("bar")
|
|
val v3 = v1 + v2
|
|
return if (v3.contents.size == 2) "OK" else "fail"
|
|
}
|