Mute jvm ir box tests

This commit is contained in:
Mikhael Bogdanov
2018-08-02 12:20:57 +02:00
parent 34a12cb87c
commit 6c41f078a6
14 changed files with 14 additions and 0 deletions
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class A<T> {
open fun foo(t: T) = "A"
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class A<T> {
open fun foo(t: T) = "A"
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface A<T> {
fun foo(t: T): String
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface A<T: Number> {
fun foo(t: T): String
}
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
open class A {
open val foo: String = "OK"
}
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// TARGET_BACKEND: JVM
// FULL_JDK
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
class Outer {
inner class Inner<T>(val t: T) {
fun box() = t
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS, NATIVE
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
var global = 0
fun sideEffect() = global++
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// TARGET_BACKEND: JVM
// WITH_RUNTIME
// FULL_JDK
+1
View File
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// TARGET_BACKEND: JVM
// WITH_RUNTIME
// FULL_JDK
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
// TARGET_BACKEND: JVM
// WITH_RUNTIME
// FULL_JDK
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
interface BK {
fun foo(): String
fun bar(): String
@@ -1,3 +1,4 @@
// IGNORE_BACKEND: JVM_IR
fun box(): String {
A.Nested().nestedA()
A.Nested().Inner().innerA()