diff --git a/compiler/testData/codegen/bytecodeText/boxing/crossinlineSuspend.kt b/compiler/testData/codegen/bytecodeText/boxing/crossinlineSuspend.kt index 3fc28b1bda5..1651b5a1581 100644 --- a/compiler/testData/codegen/bytecodeText/boxing/crossinlineSuspend.kt +++ b/compiler/testData/codegen/bytecodeText/boxing/crossinlineSuspend.kt @@ -1,5 +1,4 @@ // !LANGUAGE: +ReleaseCoroutines -// IGNORE_BACKEND: JVM_IR inline fun inlineMe(crossinline c: suspend () -> Int): suspend () -> Int { val i: suspend () -> Int = { c() + c() } diff --git a/compiler/testData/codegen/bytecodeText/coroutines/crossinlineSuspendContinuation_1_3.kt b/compiler/testData/codegen/bytecodeText/coroutines/crossinlineSuspendContinuation_1_3.kt index 7e903fd4fb5..7979ee0c6ee 100644 --- a/compiler/testData/codegen/bytecodeText/coroutines/crossinlineSuspendContinuation_1_3.kt +++ b/compiler/testData/codegen/bytecodeText/coroutines/crossinlineSuspendContinuation_1_3.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND: JVM_IR // WITH_COROUTINES import helpers.* diff --git a/compiler/testData/codegen/bytecodeText/coroutines/stateMachine/kt25893.kt b/compiler/testData/codegen/bytecodeText/coroutines/stateMachine/kt25893.kt index 548dd128756..e8b245b2843 100644 --- a/compiler/testData/codegen/bytecodeText/coroutines/stateMachine/kt25893.kt +++ b/compiler/testData/codegen/bytecodeText/coroutines/stateMachine/kt25893.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND: JVM_IR class Handler(val func: suspend (Any) -> Unit) inline fun createHandler(crossinline handler: suspend (Any) -> Unit): Handler { diff --git a/compiler/testData/codegen/bytecodeText/coroutines/stateMachine/withTypeParameter.kt b/compiler/testData/codegen/bytecodeText/coroutines/stateMachine/withTypeParameter.kt index d7feb7fbb55..dce51e637a0 100644 --- a/compiler/testData/codegen/bytecodeText/coroutines/stateMachine/withTypeParameter.kt +++ b/compiler/testData/codegen/bytecodeText/coroutines/stateMachine/withTypeParameter.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND: JVM_IR fun builder(c: suspend () -> T): T = TODO() class Test {