Mute some FIR->JVM_IR box tests

FIR generates delegated class members incorrectly (with non-substituted
signatures).
This commit is contained in:
Dmitry Petrov
2020-09-22 16:32:27 +03:00
parent c03573fc18
commit 0539b2b389
11 changed files with 11 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
// TARGET_BACKEND: JVM
// IGNORE_BACKEND_FIR: JVM_IR
// WITH_RUNTIME
class MyCollection<T>(val delegate: Collection<T>): Collection<T> by delegate
@@ -1,5 +1,5 @@
// TARGET_BACKEND: JVM
// IGNORE_BACKEND_FIR: JVM_IR
// WITH_RUNTIME
import java.util.Arrays
@@ -1,6 +1,7 @@
// TARGET_BACKEND: JVM
// The old backend thinks `toArray(): Array<Int?>` is the same as `toArray(): Array<Any?>`
// IGNORE_BACKEND: JVM
// IGNORE_BACKEND_FIR: JVM_IR
// WITH_RUNTIME
// FILE: MyListWithCustomToArray.java