diff --git a/compiler/testData/codegen/box/super/unqualifiedSuperWithDeeperHierarchies.kt b/compiler/testData/codegen/box/super/unqualifiedSuperWithDeeperHierarchies.kt index 78a13f0c366..c9ab55a897d 100644 --- a/compiler/testData/codegen/box/super/unqualifiedSuperWithDeeperHierarchies.kt +++ b/compiler/testData/codegen/box/super/unqualifiedSuperWithDeeperHierarchies.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND: JS_IR open class DeeperBase { open fun deeperBaseFun(): String = "DeeperBase.deeperBaseFun()" diff --git a/compiler/testData/codegen/box/traits/kt5393.kt b/compiler/testData/codegen/box/traits/kt5393.kt index 594ab3e3a87..2b221df2cb3 100644 --- a/compiler/testData/codegen/box/traits/kt5393.kt +++ b/compiler/testData/codegen/box/traits/kt5393.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND: JS_IR interface A { fun foo(): String { return "OK" diff --git a/compiler/testData/codegen/box/traits/kt5393_property.kt b/compiler/testData/codegen/box/traits/kt5393_property.kt index f7d956dab30..881fb3ba8ca 100644 --- a/compiler/testData/codegen/box/traits/kt5393_property.kt +++ b/compiler/testData/codegen/box/traits/kt5393_property.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND: JS_IR var result = "Fail" interface A { diff --git a/compiler/testData/codegen/box/traits/traitImplDelegationWithCovariantOverride.kt b/compiler/testData/codegen/box/traits/traitImplDelegationWithCovariantOverride.kt index c7058f0052f..2c8af75f5c0 100644 --- a/compiler/testData/codegen/box/traits/traitImplDelegationWithCovariantOverride.kt +++ b/compiler/testData/codegen/box/traits/traitImplDelegationWithCovariantOverride.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND: JS_IR interface A { fun foo(): Number { return 42 diff --git a/compiler/testData/codegen/box/traits/traitImplGenericDelegation.kt b/compiler/testData/codegen/box/traits/traitImplGenericDelegation.kt index cd8c37fca23..65253011fd9 100644 --- a/compiler/testData/codegen/box/traits/traitImplGenericDelegation.kt +++ b/compiler/testData/codegen/box/traits/traitImplGenericDelegation.kt @@ -1,4 +1,3 @@ -// IGNORE_BACKEND: JS_IR interface A { fun foo(t: T, u: U): V? { return null