diff --git a/compiler/testData/codegen/box/callableReference/arrayConstructor.kt b/compiler/testData/codegen/box/callableReference/arrayConstructor.kt index 23318619b93..56e124a8615 100644 --- a/compiler/testData/codegen/box/callableReference/arrayConstructor.kt +++ b/compiler/testData/codegen/box/callableReference/arrayConstructor.kt @@ -1,5 +1,5 @@ // WITH_RUNTIME -// IGNORE_BACKEND: JS_IR + fun g(b: (Int, (Int) -> String) -> Array): Array = b(1) { "OK" } diff --git a/compiler/testData/codegen/box/callableReference/inlineArrayConstructors.kt b/compiler/testData/codegen/box/callableReference/inlineArrayConstructors.kt index 4b7962ae4c9..26190069ae9 100644 --- a/compiler/testData/codegen/box/callableReference/inlineArrayConstructors.kt +++ b/compiler/testData/codegen/box/callableReference/inlineArrayConstructors.kt @@ -1,5 +1,4 @@ // WITH_RUNTIME -// IGNORE_BACKEND: JS_IR fun createArray(ctor: (Int, (Int) -> Char) -> CharArray) = ctor(1) { 'O' }