FIR: Unmute passing blackbox tests

This commit is contained in:
Denis Zharkov
2020-09-22 18:19:03 +03:00
parent be6bef13d3
commit 3dfbd36f15
41 changed files with 9 additions and 54 deletions
@@ -1,4 +1,3 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface A {
var bar: Boolean
get() = false
-2
View File
@@ -1,5 +1,3 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface A {
val result: String get() = "Fail"
}
+1 -2
View File
@@ -1,4 +1,3 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface BK {
fun foo(): String = 10.toString()
}
@@ -13,4 +12,4 @@ class A : BK, KTrait {
fun box(): String {
return if (A().foo() == "30") "OK" else "fail"
}
}
@@ -1,4 +1,3 @@
// IGNORE_BACKEND_FIR: JVM_IR
interface A {
fun foo() = "Fail"
}