Unmute almost all JVM_IR tests that use property references

This commit is contained in:
pyos
2019-03-08 15:01:17 +01:00
committed by max-kammerer
parent 330c4648cb
commit 8c55376f0c
190 changed files with 2 additions and 190 deletions
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
open class A {
var f: String = "OK"
}
@@ -1,6 +1,5 @@
// !LANGUAGE: +JvmFieldInInterface
// TARGET_BACKEND: JVM
// IGNORE_BACKEND: JVM_IR
// WITH_RUNTIME
class Bar(val value: String)
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
var result = ""
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
// IGNORE_BACKEND: JS_IR
// TODO: investigate should it be ran for JS or not
// IGNORE_BACKEND: JS, NATIVE
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
class Generic<P : Any>(val p: P)
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
class X {
val result: String
inline get() = "OK"
@@ -1,5 +1,4 @@
// IGNORE_BACKEND: NATIVE
// IGNORE_BACKEND: JVM_IR
class A(var v: Int) {
fun f(x: Int) = x * v
}
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
val String?.ok: String
get() = "OK"
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: JVM_IR
fun box(): String {
val f = "kotlin"::length
val result = f.get()