From 5f65b46dfc49b238b567d0d4efe82ea8dec7f051 Mon Sep 17 00:00:00 2001 From: Roman Artemev Date: Tue, 1 Jun 2021 19:48:28 +0300 Subject: [PATCH] [JS IR] Unmute fixed tests --- .../testData/codegen/box/callableReference/arrayConstructor.kt | 2 +- .../codegen/box/callableReference/inlineArrayConstructors.kt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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' }