diff --git a/compiler/testData/codegen/box/callableReference/varargAndDefaults/varargViewedAsPrimitiveArray.kt b/compiler/testData/codegen/box/callableReference/varargAndDefaults/varargViewedAsPrimitiveArray.kt index f4ac91d044d..39ddb43bdc0 100644 --- a/compiler/testData/codegen/box/callableReference/varargAndDefaults/varargViewedAsPrimitiveArray.kt +++ b/compiler/testData/codegen/box/callableReference/varargAndDefaults/varargViewedAsPrimitiveArray.kt @@ -1,6 +1,5 @@ // IGNORE_BACKEND_FIR: JVM_IR // !LANGUAGE: +NewInference -// IGNORE_BACKEND_FIR: JVM_IR fun sum(vararg args: Int): Int { var result = 0 diff --git a/compiler/testData/codegen/box/coroutines/controlFlow/doubleBreak.kt b/compiler/testData/codegen/box/coroutines/controlFlow/doubleBreak.kt index 088c35ae6c1..54f83f9b75d 100644 --- a/compiler/testData/codegen/box/coroutines/controlFlow/doubleBreak.kt +++ b/compiler/testData/codegen/box/coroutines/controlFlow/doubleBreak.kt @@ -2,7 +2,6 @@ // WITH_RUNTIME // WITH_COROUTINES // COMMON_COROUTINES_TEST -// IGNORE_BACKEND_FIR: JVM_IR import helpers.* import COROUTINES_PACKAGE.* import COROUTINES_PACKAGE.intrinsics.* diff --git a/compiler/testData/codegen/box/coroutines/controlFlow/throwFromFinally.kt b/compiler/testData/codegen/box/coroutines/controlFlow/throwFromFinally.kt index 601b21229a9..be178abb472 100644 --- a/compiler/testData/codegen/box/coroutines/controlFlow/throwFromFinally.kt +++ b/compiler/testData/codegen/box/coroutines/controlFlow/throwFromFinally.kt @@ -2,7 +2,6 @@ // WITH_RUNTIME // WITH_COROUTINES // COMMON_COROUTINES_TEST -// IGNORE_BACKEND_FIR: JVM_IR import helpers.* import COROUTINES_PACKAGE.* import COROUTINES_PACKAGE.intrinsics.* diff --git a/compiler/testData/codegen/box/coroutines/inlineClasses/boxUnboxInsideCoroutine.kt b/compiler/testData/codegen/box/coroutines/inlineClasses/boxUnboxInsideCoroutine.kt index 7dd97a0ee16..1f4603ca50e 100644 --- a/compiler/testData/codegen/box/coroutines/inlineClasses/boxUnboxInsideCoroutine.kt +++ b/compiler/testData/codegen/box/coroutines/inlineClasses/boxUnboxInsideCoroutine.kt @@ -2,7 +2,6 @@ // WITH_RUNTIME // WITH_COROUTINES // COMMON_COROUTINES_TEST -// IGNORE_BACKEND_FIR: JVM_IR import helpers.* import COROUTINES_PACKAGE.* diff --git a/compiler/testData/codegen/box/coroutines/inlineClasses/interfaceDelegateWithInlineClass.kt b/compiler/testData/codegen/box/coroutines/inlineClasses/interfaceDelegateWithInlineClass.kt index e4f478a53d9..b751ea7383a 100644 --- a/compiler/testData/codegen/box/coroutines/inlineClasses/interfaceDelegateWithInlineClass.kt +++ b/compiler/testData/codegen/box/coroutines/inlineClasses/interfaceDelegateWithInlineClass.kt @@ -2,7 +2,6 @@ // WITH_RUNTIME // WITH_COROUTINES // COMMON_COROUTINES_TEST -// IGNORE_BACKEND_FIR: JVM_IR import helpers.* import COROUTINES_PACKAGE.* diff --git a/compiler/testData/codegen/box/coroutines/inlineSuspendFunction.kt b/compiler/testData/codegen/box/coroutines/inlineSuspendFunction.kt index 809531a01af..77772e9af8c 100644 --- a/compiler/testData/codegen/box/coroutines/inlineSuspendFunction.kt +++ b/compiler/testData/codegen/box/coroutines/inlineSuspendFunction.kt @@ -2,11 +2,11 @@ // WITH_RUNTIME // WITH_COROUTINES // COMMON_COROUTINES_TEST -import helpers.* // WITH_REFLECT // CHECK_NOT_CALLED: suspendInline_61zpoe$ // CHECK_NOT_CALLED: suspendInline_6r51u9$ // CHECK_NOT_CALLED: suspendInline +import helpers.* import COROUTINES_PACKAGE.* import COROUTINES_PACKAGE.intrinsics.* diff --git a/compiler/testData/codegen/box/coroutines/tailCallOptimizations/inlineWithoutStateMachine.kt b/compiler/testData/codegen/box/coroutines/tailCallOptimizations/inlineWithoutStateMachine.kt index 9b38deb8194..f361577c7d8 100644 --- a/compiler/testData/codegen/box/coroutines/tailCallOptimizations/inlineWithoutStateMachine.kt +++ b/compiler/testData/codegen/box/coroutines/tailCallOptimizations/inlineWithoutStateMachine.kt @@ -2,10 +2,10 @@ // WITH_RUNTIME // WITH_COROUTINES // COMMON_COROUTINES_TEST -import helpers.* // CHECK_BYTECODE_LISTING // CHECK_NEW_COUNT: function=suspendHere count=0 // CHECK_NEW_COUNT: function=complexSuspend count=0 +import helpers.* import COROUTINES_PACKAGE.* import COROUTINES_PACKAGE.intrinsics.*