[K/N] Unmute passing tests.

This commit is contained in:
Mads Ager
2022-07-07 15:03:47 +02:00
committed by Space
parent c2d62b37e6
commit 59c2bde10a
89 changed files with 21 additions and 102 deletions
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: NATIVE
class A(var v: Int) {
fun f(x: Int) = x * v
}
@@ -1,4 +1,3 @@
// IGNORE_BACKEND: NATIVE
var result = "Fail"
fun foo(
@@ -1,6 +1,5 @@
// IGNORE_BACKEND: JVM
// IGNORE_LIGHT_ANALYSIS
// IGNORE_BACKEND: NATIVE
// IGNORE_BACKEND_FIR: JVM_IR
// FIR_STATUS: LambdaConversionException: Type mismatch for lambda argument 1: class java.lang.Object is not convertible to interface I1
@@ -1,5 +1,3 @@
// IGNORE_BACKEND: NATIVE
fun <T> id(x: T): T = x
fun <T> intersect(x: T, y: T): T = x
@@ -1,5 +1,3 @@
// IGNORE_BACKEND: NATIVE
// WITH_STDLIB
inline fun <T> useRef(value: T, f: (T) -> Boolean) = f(value)
@@ -1,5 +1,4 @@
// !LANGUAGE: -ForbidUsingExtensionPropertyTypeParameterInDelegate
// IGNORE_BACKEND: NATIVE
//For KT-6020
import kotlin.reflect.KProperty1
import kotlin.reflect.KMutableProperty1