diff --git a/compiler/testData/codegen/box/inlineClasses/interfaceMethodCalls/genericDefaultInterfaceExtensionFunCall.kt b/compiler/testData/codegen/box/inlineClasses/interfaceMethodCalls/genericDefaultInterfaceExtensionFunCall.kt index 2b7084ed8c1..a3820aad7db 100644 --- a/compiler/testData/codegen/box/inlineClasses/interfaceMethodCalls/genericDefaultInterfaceExtensionFunCall.kt +++ b/compiler/testData/codegen/box/inlineClasses/interfaceMethodCalls/genericDefaultInterfaceExtensionFunCall.kt @@ -1,5 +1,5 @@ // !LANGUAGE: +InlineClasses -// IGNORE_BACKEND: JVM_IR +// IGNORE_BACKEND: JVM_IR, JS_IR interface IFoo> { fun T.foo(): String = bar() @@ -36,4 +36,4 @@ fun box(): String { S("").testS() return "OK" -} \ No newline at end of file +} diff --git a/compiler/testData/codegen/box/inlineClasses/interfaceMethodCalls/genericDefaultInterfaceMethodCall.kt b/compiler/testData/codegen/box/inlineClasses/interfaceMethodCalls/genericDefaultInterfaceMethodCall.kt index 0757cd19094..f89669fb38b 100644 --- a/compiler/testData/codegen/box/inlineClasses/interfaceMethodCalls/genericDefaultInterfaceMethodCall.kt +++ b/compiler/testData/codegen/box/inlineClasses/interfaceMethodCalls/genericDefaultInterfaceMethodCall.kt @@ -1,5 +1,5 @@ // !LANGUAGE: +InlineClasses -// IGNORE_BACKEND: JVM_IR +// IGNORE_BACKEND: JVM_IR, JS_IR interface IFoo> { fun foo(t: T): String = t.bar() @@ -11,4 +11,4 @@ inline class Z(val x: Int) : IFoo { } fun box(): String = - Z(1).foo(Z(2)) \ No newline at end of file + Z(1).foo(Z(2)) diff --git a/compiler/testData/codegen/box/inlineClasses/kt27132.kt b/compiler/testData/codegen/box/inlineClasses/kt27132.kt index d41f580cae0..6b0dde3545c 100644 --- a/compiler/testData/codegen/box/inlineClasses/kt27132.kt +++ b/compiler/testData/codegen/box/inlineClasses/kt27132.kt @@ -1,5 +1,6 @@ // !LANGUAGE: +InlineClasses // IGNORE_BACKEND: JVM_IR +// IGNORE_BACKEND: JS_IR // WITH_RUNTIME inline class Ucn(private val i: UInt) diff --git a/compiler/testData/codegen/boxInline/suspend/multipleLocals.kt b/compiler/testData/codegen/boxInline/suspend/multipleLocals.kt index 51edae6359b..5bd4f16904c 100644 --- a/compiler/testData/codegen/boxInline/suspend/multipleLocals.kt +++ b/compiler/testData/codegen/boxInline/suspend/multipleLocals.kt @@ -1,5 +1,4 @@ // IGNORE_BACKEND: JVM_IR -// IGNORE_BACKEND: JS_IR // FILE: inlined.kt // COMMON_COROUTINES_TEST // WITH_RUNTIME @@ -120,4 +119,4 @@ fun box(): String { inlineSite() } return "OK" -} \ No newline at end of file +}