[K/N] Unmute tests already working on native Also, add issue references for some tests
diff --git a/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/codegen/FirLightTreeBlackBoxCodegenTestGenerated.java b/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/codegen/FirLightTreeBlackBoxCodegenTestGenerated.java index 5bce305..b23fdc5 100644 --- a/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/codegen/FirLightTreeBlackBoxCodegenTestGenerated.java +++ b/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/codegen/FirLightTreeBlackBoxCodegenTestGenerated.java
@@ -49190,12 +49190,6 @@ } @Test - @TestMetadata("fieldInitializerOptimization_inlineClass.kt") - public void testFieldInitializerOptimization_inlineClass() throws Exception { - runTest("compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt"); - } - - @Test @TestMetadata("generics.kt") public void testGenerics() throws Exception { runTest("compiler/testData/codegen/box/secondaryConstructors/generics.kt");
diff --git a/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/codegen/FirPsiBlackBoxCodegenTestGenerated.java b/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/codegen/FirPsiBlackBoxCodegenTestGenerated.java index f2a2624..106bbc1 100644 --- a/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/codegen/FirPsiBlackBoxCodegenTestGenerated.java +++ b/compiler/fir/fir2ir/tests-gen/org/jetbrains/kotlin/test/runners/codegen/FirPsiBlackBoxCodegenTestGenerated.java
@@ -49190,12 +49190,6 @@ } @Test - @TestMetadata("fieldInitializerOptimization_inlineClass.kt") - public void testFieldInitializerOptimization_inlineClass() throws Exception { - runTest("compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt"); - } - - @Test @TestMetadata("generics.kt") public void testGenerics() throws Exception { runTest("compiler/testData/codegen/box/secondaryConstructors/generics.kt");
diff --git a/compiler/testData/codegen/box/arrays/arrayInstanceOf.kt b/compiler/testData/codegen/box/arrays/arrayInstanceOf.kt index 7f2cd98..4c167fd 100644 --- a/compiler/testData/codegen/box/arrays/arrayInstanceOf.kt +++ b/compiler/testData/codegen/box/arrays/arrayInstanceOf.kt
@@ -1,5 +1,5 @@ // IGNORE_BACKEND_K2: JS_IR -// KT-55457 +// KT-58549 // IGNORE_BACKEND_K2: NATIVE //test [], get and iterator calls
diff --git a/compiler/testData/codegen/box/arrays/kt7288.kt b/compiler/testData/codegen/box/arrays/kt7288.kt index 74a7ecd..7a97ad4 100644 --- a/compiler/testData/codegen/box/arrays/kt7288.kt +++ b/compiler/testData/codegen/box/arrays/kt7288.kt
@@ -1,5 +1,5 @@ // IGNORE_BACKEND_K2: JS_IR -// KT-55457 +// KT-58549 // IGNORE_BACKEND_K2: NATIVE fun test(b: Boolean): String {
diff --git a/compiler/testData/codegen/box/arrays/kt7338.kt b/compiler/testData/codegen/box/arrays/kt7338.kt index cd84012..e1445d2 100644 --- a/compiler/testData/codegen/box/arrays/kt7338.kt +++ b/compiler/testData/codegen/box/arrays/kt7338.kt
@@ -1,11 +1,4 @@ -// IGNORE_BACKEND: WASM -// WASM_MUTE_REASON: IGNORED_IN_JS -// IGNORE_BACKEND: NATIVE -// IGNORE_BACKEND: JS_IR -// IGNORE_BACKEND: JS_IR_ES6 -// TODO: muted automatically, investigate should it be ran for JS or not -// IGNORE_BACKEND: JS - +// TARGET_BACKEND: JVM // WITH_STDLIB fun foo(x : Any): String {
diff --git a/compiler/testData/codegen/box/assert/alwaysDisable.kt b/compiler/testData/codegen/box/assert/alwaysDisable.kt index acd6c04..a8d853a 100644 --- a/compiler/testData/codegen/box/assert/alwaysDisable.kt +++ b/compiler/testData/codegen/box/assert/alwaysDisable.kt
@@ -1,5 +1,6 @@ // IGNORE_BACKEND: WASM // WASM_MUTE_REASON: STDLIB_ASSERT +// KT-59059 // IGNORE_BACKEND: NATIVE // IGNORE_BACKEND: JS_IR // IGNORE_BACKEND: JS_IR_ES6
diff --git a/compiler/testData/codegen/box/classes/classObjectAsStaticInitializer.kt b/compiler/testData/codegen/box/classes/classObjectAsStaticInitializer.kt index 10d9350..7047253 100644 --- a/compiler/testData/codegen/box/classes/classObjectAsStaticInitializer.kt +++ b/compiler/testData/codegen/box/classes/classObjectAsStaticInitializer.kt
@@ -1,5 +1,6 @@ // IGNORE_BACKEND: WASM // WASM_MUTE_REASON: IGNORED_IN_JS +// KT-59058 // IGNORE_BACKEND: NATIVE var global = "A"
diff --git a/compiler/testData/codegen/box/contracts/kt39374.kt b/compiler/testData/codegen/box/contracts/kt39374.kt index f5bb9b9..97d5b25 100644 --- a/compiler/testData/codegen/box/contracts/kt39374.kt +++ b/compiler/testData/codegen/box/contracts/kt39374.kt
@@ -1,4 +1,3 @@ -// IGNORE_BACKEND: NATIVE // WITH_STDLIB // WITH_COROUTINES import kotlin.contracts.*
diff --git a/compiler/testData/codegen/box/coroutines/suspendInTheMiddleOfObjectConstructionEvaluationOrder.kt b/compiler/testData/codegen/box/coroutines/suspendInTheMiddleOfObjectConstructionEvaluationOrder.kt index 737e0ce..fe60a68 100644 --- a/compiler/testData/codegen/box/coroutines/suspendInTheMiddleOfObjectConstructionEvaluationOrder.kt +++ b/compiler/testData/codegen/box/coroutines/suspendInTheMiddleOfObjectConstructionEvaluationOrder.kt
@@ -1,5 +1,6 @@ // IGNORE_BACKEND: WASM // WASM_MUTE_REASON: NESTED_OBJECT_INIT +// KT-59058 // IGNORE_BACKEND: NATIVE // WITH_STDLIB // WITH_COROUTINES
diff --git a/compiler/testData/codegen/box/enum/enumCompanionInit.kt b/compiler/testData/codegen/box/enum/enumCompanionInit.kt index f7d2b29..e8f0f85 100644 --- a/compiler/testData/codegen/box/enum/enumCompanionInit.kt +++ b/compiler/testData/codegen/box/enum/enumCompanionInit.kt
@@ -2,7 +2,6 @@ // DONT_TARGET_EXACT_BACKEND: JS_IR // DONT_TARGET_EXACT_BACKEND: JS_IR_ES6 // DONT_TARGET_EXACT_BACKEND: WASM -// IGNORE_BACKEND: NATIVE var result = "" enum class E(a: String) {
diff --git a/compiler/testData/codegen/box/extensionFunctions/whenFail.kt b/compiler/testData/codegen/box/extensionFunctions/whenFail.kt index 2bd6966..75ded4d 100644 --- a/compiler/testData/codegen/box/extensionFunctions/whenFail.kt +++ b/compiler/testData/codegen/box/extensionFunctions/whenFail.kt
@@ -1,10 +1,4 @@ -// IGNORE_BACKEND: WASM -// WASM_MUTE_REASON: IGNORED_IN_JS -// IGNORE_BACKEND: JS_IR -// IGNORE_BACKEND: JS_IR_ES6 -// TODO: muted automatically, investigate should it be ran for JS or not -// IGNORE_BACKEND: JS -// IGNORE_BACKEND: NATIVE +// TARGET_BACKEND: JVM fun StringBuilder.takeFirst(): Char { if (this.length == 0) return 0.toChar()
diff --git a/compiler/testData/codegen/box/ieee754/smartCastToDifferentTypes.kt b/compiler/testData/codegen/box/ieee754/smartCastToDifferentTypes.kt index e731780..14b558c 100644 --- a/compiler/testData/codegen/box/ieee754/smartCastToDifferentTypes.kt +++ b/compiler/testData/codegen/box/ieee754/smartCastToDifferentTypes.kt
@@ -1,9 +1,6 @@ -// IGNORE_BACKEND: WASM -// WASM_MUTE_REASON: IGNORED_IN_JS +// TARGET_BACKEND: JVM // !LANGUAGE: -ProperIeee754Comparisons -// IGNORE_BACKEND: NATIVE -// DONT_TARGET_EXACT_BACKEND: JS_IR -// DONT_TARGET_EXACT_BACKEND: JS_IR_ES6 + fun box(): String { val zero: Any = 0.0 val floatZero: Any = -0.0F
diff --git a/compiler/testData/codegen/box/ieee754/smartCastToDifferentTypesWithNumericPromotion.kt b/compiler/testData/codegen/box/ieee754/smartCastToDifferentTypesWithNumericPromotion.kt index 43d3d0c..646a222 100644 --- a/compiler/testData/codegen/box/ieee754/smartCastToDifferentTypesWithNumericPromotion.kt +++ b/compiler/testData/codegen/box/ieee754/smartCastToDifferentTypesWithNumericPromotion.kt
@@ -1,9 +1,6 @@ -// IGNORE_BACKEND: WASM -// WASM_MUTE_REASON: IGNORED_IN_JS +// TARGET_BACKEND: JVM // !LANGUAGE: -ProperIeee754Comparisons -// IGNORE_BACKEND: NATIVE -// DONT_TARGET_EXACT_BACKEND: JS_IR -// DONT_TARGET_EXACT_BACKEND: JS_IR_ES6 + fun eqDI(x: Any?, y: Any?) = x is Double? && y is Int? && x == y fun eqDL(x: Any?, y: Any?) = x is Double? && y is Long? && x == y fun eqID(x: Any?, y: Any?) = x is Int? && y is Double? && x == y
diff --git a/compiler/testData/codegen/box/javaInterop/generics/kt42824.kt b/compiler/testData/codegen/box/javaInterop/generics/kt42824.kt index 9515fc3..86bec72 100644 --- a/compiler/testData/codegen/box/javaInterop/generics/kt42824.kt +++ b/compiler/testData/codegen/box/javaInterop/generics/kt42824.kt
@@ -1,7 +1,5 @@ -// IGNORE_BACKEND: WASM -// IGNORE_BACKEND: JS -// IGNORE_BACKEND: JS_IR, JS_IR_ES6 -// IGNORE_BACKEND: NATIVE +// TARGET_BACKEND: JVM + // FILE: DiagnosticFactory0.java import org.jetbrains.annotations.NotNull;
diff --git a/compiler/testData/codegen/box/javaInterop/generics/kt42825.kt b/compiler/testData/codegen/box/javaInterop/generics/kt42825.kt index e83afc3..763c06e 100644 --- a/compiler/testData/codegen/box/javaInterop/generics/kt42825.kt +++ b/compiler/testData/codegen/box/javaInterop/generics/kt42825.kt
@@ -1,7 +1,5 @@ -// IGNORE_BACKEND: WASM -// IGNORE_BACKEND: JS -// IGNORE_BACKEND: JS_IR, JS_IR_ES6 -// IGNORE_BACKEND: NATIVE +// TARGET_BACKEND: JVM + // FILE: Processor.java public interface Processor<T> {
diff --git a/compiler/testData/codegen/box/multiplatform/starImportOfExpectEnumWithActualTypeAlias.kt b/compiler/testData/codegen/box/multiplatform/starImportOfExpectEnumWithActualTypeAlias.kt index e9d1b2a..03605a3 100644 --- a/compiler/testData/codegen/box/multiplatform/starImportOfExpectEnumWithActualTypeAlias.kt +++ b/compiler/testData/codegen/box/multiplatform/starImportOfExpectEnumWithActualTypeAlias.kt
@@ -2,7 +2,6 @@ // IGNORE_BACKEND: JS // IGNORE_BACKEND: JS_IR // IGNORE_BACKEND: JS_IR_ES6 -// IGNORE_BACKEND: NATIVE // MODULE: lib-common // FILE: common.kt
diff --git a/compiler/testData/codegen/box/properties/lazyInitializationCyclicImports.kt b/compiler/testData/codegen/box/properties/lazyInitializationCyclicImports.kt index 505cfff..0bd9bf9 100644 --- a/compiler/testData/codegen/box/properties/lazyInitializationCyclicImports.kt +++ b/compiler/testData/codegen/box/properties/lazyInitializationCyclicImports.kt
@@ -1,6 +1,3 @@ -// Fails on native with legacy memory manager. To reproduce, run with -// -Pkotlin.internal.native.test.memoryModel=LEGACY -Pkotlin.internal.native.test.cacheMode=NO -// IGNORE_BACKEND: NATIVE // IGNORE_BACKEND: JS // PROPERTY_LAZY_INITIALIZATION
diff --git a/compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/callableReferences.kt b/compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/callableReferences.kt index 4293751..e796f1c 100644 --- a/compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/callableReferences.kt +++ b/compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/callableReferences.kt
@@ -1,9 +1,4 @@ -// IGNORE_BACKEND: JS_IR -// IGNORE_BACKEND: JS_IR_ES6 -// TODO: muted automatically, investigate should it be ran for JS or not -// IGNORE_BACKEND: JS -// IGNORE_BACKEND: NATIVE -// IGNORE_BACKEND: WASM +// TARGET_BACKEND: JVM // WITH_STDLIB import kotlin.reflect.KCallable
diff --git a/compiler/testData/codegen/box/reified/arraysReification/instanceOf.kt b/compiler/testData/codegen/box/reified/arraysReification/instanceOf.kt index d0ad723..962459f 100644 --- a/compiler/testData/codegen/box/reified/arraysReification/instanceOf.kt +++ b/compiler/testData/codegen/box/reified/arraysReification/instanceOf.kt
@@ -1,11 +1,4 @@ -// IGNORE_BACKEND: WASM -// WASM_MUTE_REASON: IGNORED_IN_JS -// IGNORE_BACKEND: NATIVE -// IGNORE_BACKEND: JS_IR -// IGNORE_BACKEND: JS_IR_ES6 -// TODO: muted automatically, investigate should it be ran for JS or not -// IGNORE_BACKEND: JS - +// TARGET_BACKEND: JVM // WITH_STDLIB inline fun <reified T> foo(x: Any?) = Pair(x is T, x is T?)
diff --git a/compiler/testData/codegen/box/reified/arraysReification/instanceOfArrays.kt b/compiler/testData/codegen/box/reified/arraysReification/instanceOfArrays.kt index fae19c4..b362982 100644 --- a/compiler/testData/codegen/box/reified/arraysReification/instanceOfArrays.kt +++ b/compiler/testData/codegen/box/reified/arraysReification/instanceOfArrays.kt
@@ -1,11 +1,4 @@ -// IGNORE_BACKEND: WASM -// WASM_MUTE_REASON: IGNORED_IN_JS -// IGNORE_BACKEND: NATIVE -// IGNORE_BACKEND: JS_IR -// IGNORE_BACKEND: JS_IR_ES6 -// TODO: muted automatically, investigate should it be ran for JS or not -// IGNORE_BACKEND: JS - +// TARGET_BACKEND: JVM // WITH_STDLIB inline fun <reified T> foo(x: Any?) = Pair(x is T, x is T?)
diff --git a/compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt b/compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt deleted file mode 100644 index e12a0a6..0000000 --- a/compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt +++ /dev/null
@@ -1,35 +0,0 @@ -// IGNORE_BACKEND: WASM -// WASM_MUTE_REASON: IGNORED_IN_JS -// IGNORE_BACKEND: NATIVE -// IGNORE_BACKEND: JS -// IGNORE_BACKEND: JS_IR -// IGNORE_BACKEND: JS_IR_ES6 -// IGNORE_BACKEND: JVM -// IGNORE_BACKEND: JVM_IR -// FIR status: not supported in JVM - -open class Base { - open fun setup() {} - init { setup() } -} - -inline class Z(val y: Int) - -class Derived : Base { - constructor() : super() - override fun setup() { - x = Z(1) - } - - // Technically, this field initializer comes after the superclass - // constructor is called. However, we optimize away field initializers - // which set fields to their default value, which is why x ends up with - // value 1 after the constructor call. - var x = Z(0) -} - -fun box(): String { - val d = Derived() - if (d.x.y != 1) return "fail" - return "OK" -}
diff --git a/compiler/testData/codegen/box/toArray/toTypedArray.kt b/compiler/testData/codegen/box/toArray/toTypedArray.kt index 3b15b33b..0c63706 100644 --- a/compiler/testData/codegen/box/toArray/toTypedArray.kt +++ b/compiler/testData/codegen/box/toArray/toTypedArray.kt
@@ -1,11 +1,4 @@ -// IGNORE_BACKEND: NATIVE -// IGNORE_BACKEND: JS_IR -// IGNORE_BACKEND: JS_IR_ES6 -// TODO: muted automatically, investigate should it be ran for JS or not -// IGNORE_BACKEND: JS -// IGNORE_BACKEND: WASM -// missing isArrayOf on JS - +// TARGET_BACKEND: JVM // WITH_STDLIB fun box(): String {
diff --git a/compiler/testData/codegen/boxInline/reified/kt15956.kt b/compiler/testData/codegen/boxInline/reified/kt15956.kt index c641ebc..738cd7e 100644 --- a/compiler/testData/codegen/boxInline/reified/kt15956.kt +++ b/compiler/testData/codegen/boxInline/reified/kt15956.kt
@@ -1,7 +1,4 @@ -// IGNORE_BACKEND: WASM -// IGNORE_BACKEND: JS_IR_ES6 -// IGNORE_BACKEND: NATIVE -// IGNORE_BACKEND: JS, JS_IR +// TARGET_BACKEND: JVM // WITH_REFLECT // FILE: 1.kt
diff --git a/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/BlackBoxCodegenTestGenerated.java b/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/BlackBoxCodegenTestGenerated.java index bbdd73e..54ab14e 100644 --- a/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/BlackBoxCodegenTestGenerated.java +++ b/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/BlackBoxCodegenTestGenerated.java
@@ -46502,12 +46502,6 @@ } @Test - @TestMetadata("fieldInitializerOptimization_inlineClass.kt") - public void testFieldInitializerOptimization_inlineClass() throws Exception { - runTest("compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt"); - } - - @Test @TestMetadata("generics.kt") public void testGenerics() throws Exception { runTest("compiler/testData/codegen/box/secondaryConstructors/generics.kt");
diff --git a/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/IrBlackBoxCodegenTestGenerated.java b/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/IrBlackBoxCodegenTestGenerated.java index 24421a3..af42ffc 100644 --- a/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/IrBlackBoxCodegenTestGenerated.java +++ b/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/IrBlackBoxCodegenTestGenerated.java
@@ -49190,12 +49190,6 @@ } @Test - @TestMetadata("fieldInitializerOptimization_inlineClass.kt") - public void testFieldInitializerOptimization_inlineClass() throws Exception { - runTest("compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt"); - } - - @Test @TestMetadata("generics.kt") public void testGenerics() throws Exception { runTest("compiler/testData/codegen/box/secondaryConstructors/generics.kt");
diff --git a/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/IrBlackBoxCodegenWithIrInlinerTestGenerated.java b/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/IrBlackBoxCodegenWithIrInlinerTestGenerated.java index f665aae..ac183c4 100644 --- a/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/IrBlackBoxCodegenWithIrInlinerTestGenerated.java +++ b/compiler/tests-common-new/tests-gen/org/jetbrains/kotlin/test/runners/codegen/IrBlackBoxCodegenWithIrInlinerTestGenerated.java
@@ -49190,12 +49190,6 @@ } @Test - @TestMetadata("fieldInitializerOptimization_inlineClass.kt") - public void testFieldInitializerOptimization_inlineClass() throws Exception { - runTest("compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt"); - } - - @Test @TestMetadata("generics.kt") public void testGenerics() throws Exception { runTest("compiler/testData/codegen/box/secondaryConstructors/generics.kt");
diff --git a/compiler/tests-gen/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java b/compiler/tests-gen/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java index d0ecbfd..8bda4fd 100644 --- a/compiler/tests-gen/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java +++ b/compiler/tests-gen/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java
@@ -37589,11 +37589,6 @@ @TestDataPath("$PROJECT_ROOT") @RunWith(JUnit3RunnerWithInners.class) public static class SecondaryConstructors extends AbstractLightAnalysisModeTest { - @TestMetadata("fieldInitializerOptimization_inlineClass.kt") - public void ignoreFieldInitializerOptimization_inlineClass() throws Exception { - runTest("compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt"); - } - private void runTest(String testDataFilePath) throws Exception { KotlinTestUtils.runTest(this::doTest, TargetBackend.JVM, testDataFilePath); }
diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsCodegenBoxTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsCodegenBoxTestGenerated.java index 8a71d00..5802cbb 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsCodegenBoxTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsCodegenBoxTestGenerated.java
@@ -586,12 +586,6 @@ } @Test - @TestMetadata("kt7338.kt") - public void testKt7338() throws Exception { - runTest("compiler/testData/codegen/box/arrays/kt7338.kt"); - } - - @Test @TestMetadata("kt779.kt") public void testKt779() throws Exception { runTest("compiler/testData/codegen/box/arrays/kt779.kt"); @@ -13255,12 +13249,6 @@ runTest("compiler/testData/codegen/box/extensionFunctions/virtual.kt"); } - @Test - @TestMetadata("whenFail.kt") - public void testWhenFail() throws Exception { - runTest("compiler/testData/codegen/box/extensionFunctions/whenFail.kt"); - } - @Nested @TestMetadata("compiler/testData/codegen/box/extensionFunctions/contextReceivers") @TestDataPath("$PROJECT_ROOT") @@ -14874,18 +14862,6 @@ } @Test - @TestMetadata("smartCastToDifferentTypes.kt") - public void testSmartCastToDifferentTypes() throws Exception { - runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypes.kt"); - } - - @Test - @TestMetadata("smartCastToDifferentTypesWithNumericPromotion.kt") - public void testSmartCastToDifferentTypesWithNumericPromotion() throws Exception { - runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypesWithNumericPromotion.kt"); - } - - @Test @TestMetadata("smartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons.kt") public void testSmartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons() throws Exception { runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons.kt"); @@ -21569,18 +21545,6 @@ public void testAllFilesPresentInGenerics() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/javaInterop/generics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS, true); } - - @Test - @TestMetadata("kt42824.kt") - public void testKt42824() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42824.kt"); - } - - @Test - @TestMetadata("kt42825.kt") - public void testKt42825() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42825.kt"); - } } @Nested @@ -33046,12 +33010,6 @@ } @Test - @TestMetadata("callableReferences.kt") - public void testCallableReferences() throws Exception { - runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/callableReferences.kt"); - } - - @Test @TestMetadata("delegatedProperty.kt") public void testDelegatedProperty() throws Exception { runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/delegatedProperty.kt"); @@ -34249,18 +34207,6 @@ } @Test - @TestMetadata("instanceOf.kt") - public void testInstanceOf() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOf.kt"); - } - - @Test - @TestMetadata("instanceOfArrays.kt") - public void testInstanceOfArrays() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOfArrays.kt"); - } - - @Test @TestMetadata("jaggedArray.kt") public void testJaggedArray() throws Exception { runTest("compiler/testData/codegen/box/reified/arraysReification/jaggedArray.kt"); @@ -34766,12 +34712,6 @@ } @Test - @TestMetadata("fieldInitializerOptimization_inlineClass.kt") - public void testFieldInitializerOptimization_inlineClass() throws Exception { - runTest("compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt"); - } - - @Test @TestMetadata("generics.kt") public void testGenerics() throws Exception { runTest("compiler/testData/codegen/box/secondaryConstructors/generics.kt"); @@ -36060,12 +36000,6 @@ public void testReturnToTypedArray() throws Exception { runTest("compiler/testData/codegen/box/toArray/returnToTypedArray.kt"); } - - @Test - @TestMetadata("toTypedArray.kt") - public void testToTypedArray() throws Exception { - runTest("compiler/testData/codegen/box/toArray/toTypedArray.kt"); - } } @Nested
diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsCodegenInlineTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsCodegenInlineTestGenerated.java index 244c612..cc08dba 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsCodegenInlineTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsCodegenInlineTestGenerated.java
@@ -3529,12 +3529,6 @@ } @Test - @TestMetadata("kt15956.kt") - public void testKt15956() throws Exception { - runTest("compiler/testData/codegen/boxInline/reified/kt15956.kt"); - } - - @Test @TestMetadata("kt18977.kt") public void testKt18977() throws Exception { runTest("compiler/testData/codegen/boxInline/reified/kt18977.kt");
diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsLegacyPrimitiveArraysBoxTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsLegacyPrimitiveArraysBoxTestGenerated.java index e7aa882..1bc2663 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsLegacyPrimitiveArraysBoxTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/JsLegacyPrimitiveArraysBoxTestGenerated.java
@@ -356,12 +356,6 @@ } @Test - @TestMetadata("kt7338.kt") - public void testKt7338() throws Exception { - runTest("compiler/testData/codegen/box/arrays/kt7338.kt"); - } - - @Test @TestMetadata("kt779.kt") public void testKt779() throws Exception { runTest("compiler/testData/codegen/box/arrays/kt779.kt");
diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/fir/FirJsCodegenBoxTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/fir/FirJsCodegenBoxTestGenerated.java index ff4952f..c750a74 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/fir/FirJsCodegenBoxTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/fir/FirJsCodegenBoxTestGenerated.java
@@ -640,12 +640,6 @@ } @Test - @TestMetadata("kt7338.kt") - public void testKt7338() throws Exception { - runTest("compiler/testData/codegen/box/arrays/kt7338.kt"); - } - - @Test @TestMetadata("kt779.kt") public void testKt779() throws Exception { runTest("compiler/testData/codegen/box/arrays/kt779.kt"); @@ -13351,12 +13345,6 @@ runTest("compiler/testData/codegen/box/extensionFunctions/virtual.kt"); } - @Test - @TestMetadata("whenFail.kt") - public void testWhenFail() throws Exception { - runTest("compiler/testData/codegen/box/extensionFunctions/whenFail.kt"); - } - @Nested @TestMetadata("compiler/testData/codegen/box/extensionFunctions/contextReceivers") @TestDataPath("$PROJECT_ROOT") @@ -21719,18 +21707,6 @@ public void testAllFilesPresentInGenerics() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/javaInterop/generics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true); } - - @Test - @TestMetadata("kt42824.kt") - public void testKt42824() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42824.kt"); - } - - @Test - @TestMetadata("kt42825.kt") - public void testKt42825() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42825.kt"); - } } @Nested @@ -33448,12 +33424,6 @@ } @Test - @TestMetadata("callableReferences.kt") - public void testCallableReferences() throws Exception { - runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/callableReferences.kt"); - } - - @Test @TestMetadata("delegatedProperty.kt") public void testDelegatedProperty() throws Exception { runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/delegatedProperty.kt"); @@ -34651,18 +34621,6 @@ } @Test - @TestMetadata("instanceOf.kt") - public void testInstanceOf() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOf.kt"); - } - - @Test - @TestMetadata("instanceOfArrays.kt") - public void testInstanceOfArrays() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOfArrays.kt"); - } - - @Test @TestMetadata("jaggedArray.kt") public void testJaggedArray() throws Exception { runTest("compiler/testData/codegen/box/reified/arraysReification/jaggedArray.kt"); @@ -35168,12 +35126,6 @@ } @Test - @TestMetadata("fieldInitializerOptimization_inlineClass.kt") - public void testFieldInitializerOptimization_inlineClass() throws Exception { - runTest("compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt"); - } - - @Test @TestMetadata("generics.kt") public void testGenerics() throws Exception { runTest("compiler/testData/codegen/box/secondaryConstructors/generics.kt"); @@ -36474,12 +36426,6 @@ public void testReturnToTypedArray() throws Exception { runTest("compiler/testData/codegen/box/toArray/returnToTypedArray.kt"); } - - @Test - @TestMetadata("toTypedArray.kt") - public void testToTypedArray() throws Exception { - runTest("compiler/testData/codegen/box/toArray/toTypedArray.kt"); - } } @Nested
diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/fir/FirJsCodegenInlineTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/fir/FirJsCodegenInlineTestGenerated.java index 1a56b52..342ffff 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/fir/FirJsCodegenInlineTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/fir/FirJsCodegenInlineTestGenerated.java
@@ -3529,12 +3529,6 @@ } @Test - @TestMetadata("kt15956.kt") - public void testKt15956() throws Exception { - runTest("compiler/testData/codegen/boxInline/reified/kt15956.kt"); - } - - @Test @TestMetadata("kt18977.kt") public void testKt18977() throws Exception { runTest("compiler/testData/codegen/boxInline/reified/kt18977.kt");
diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenBoxTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenBoxTestGenerated.java index 83be316..d1ae7af 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenBoxTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenBoxTestGenerated.java
@@ -640,12 +640,6 @@ } @Test - @TestMetadata("kt7338.kt") - public void testKt7338() throws Exception { - runTest("compiler/testData/codegen/box/arrays/kt7338.kt"); - } - - @Test @TestMetadata("kt779.kt") public void testKt779() throws Exception { runTest("compiler/testData/codegen/box/arrays/kt779.kt"); @@ -13351,12 +13345,6 @@ runTest("compiler/testData/codegen/box/extensionFunctions/virtual.kt"); } - @Test - @TestMetadata("whenFail.kt") - public void testWhenFail() throws Exception { - runTest("compiler/testData/codegen/box/extensionFunctions/whenFail.kt"); - } - @Nested @TestMetadata("compiler/testData/codegen/box/extensionFunctions/contextReceivers") @TestDataPath("$PROJECT_ROOT") @@ -21719,18 +21707,6 @@ public void testAllFilesPresentInGenerics() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/javaInterop/generics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true); } - - @Test - @TestMetadata("kt42824.kt") - public void testKt42824() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42824.kt"); - } - - @Test - @TestMetadata("kt42825.kt") - public void testKt42825() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42825.kt"); - } } @Nested @@ -33448,12 +33424,6 @@ } @Test - @TestMetadata("callableReferences.kt") - public void testCallableReferences() throws Exception { - runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/callableReferences.kt"); - } - - @Test @TestMetadata("delegatedProperty.kt") public void testDelegatedProperty() throws Exception { runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/delegatedProperty.kt"); @@ -34651,18 +34621,6 @@ } @Test - @TestMetadata("instanceOf.kt") - public void testInstanceOf() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOf.kt"); - } - - @Test - @TestMetadata("instanceOfArrays.kt") - public void testInstanceOfArrays() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOfArrays.kt"); - } - - @Test @TestMetadata("jaggedArray.kt") public void testJaggedArray() throws Exception { runTest("compiler/testData/codegen/box/reified/arraysReification/jaggedArray.kt"); @@ -35168,12 +35126,6 @@ } @Test - @TestMetadata("fieldInitializerOptimization_inlineClass.kt") - public void testFieldInitializerOptimization_inlineClass() throws Exception { - runTest("compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt"); - } - - @Test @TestMetadata("generics.kt") public void testGenerics() throws Exception { runTest("compiler/testData/codegen/box/secondaryConstructors/generics.kt"); @@ -36474,12 +36426,6 @@ public void testReturnToTypedArray() throws Exception { runTest("compiler/testData/codegen/box/toArray/returnToTypedArray.kt"); } - - @Test - @TestMetadata("toTypedArray.kt") - public void testToTypedArray() throws Exception { - runTest("compiler/testData/codegen/box/toArray/toTypedArray.kt"); - } } @Nested
diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenInlineTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenInlineTestGenerated.java index 6404404..95aacb2 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenInlineTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsCodegenInlineTestGenerated.java
@@ -3529,12 +3529,6 @@ } @Test - @TestMetadata("kt15956.kt") - public void testKt15956() throws Exception { - runTest("compiler/testData/codegen/boxInline/reified/kt15956.kt"); - } - - @Test @TestMetadata("kt18977.kt") public void testKt18977() throws Exception { runTest("compiler/testData/codegen/boxInline/reified/kt18977.kt");
diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsES6CodegenBoxTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsES6CodegenBoxTestGenerated.java index f078d8c..6f68d49 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsES6CodegenBoxTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsES6CodegenBoxTestGenerated.java
@@ -640,12 +640,6 @@ } @Test - @TestMetadata("kt7338.kt") - public void testKt7338() throws Exception { - runTest("compiler/testData/codegen/box/arrays/kt7338.kt"); - } - - @Test @TestMetadata("kt779.kt") public void testKt779() throws Exception { runTest("compiler/testData/codegen/box/arrays/kt779.kt"); @@ -13351,12 +13345,6 @@ runTest("compiler/testData/codegen/box/extensionFunctions/virtual.kt"); } - @Test - @TestMetadata("whenFail.kt") - public void testWhenFail() throws Exception { - runTest("compiler/testData/codegen/box/extensionFunctions/whenFail.kt"); - } - @Nested @TestMetadata("compiler/testData/codegen/box/extensionFunctions/contextReceivers") @TestDataPath("$PROJECT_ROOT") @@ -21719,18 +21707,6 @@ public void testAllFilesPresentInGenerics() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/javaInterop/generics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR_ES6, true); } - - @Test - @TestMetadata("kt42824.kt") - public void testKt42824() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42824.kt"); - } - - @Test - @TestMetadata("kt42825.kt") - public void testKt42825() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42825.kt"); - } } @Nested @@ -33448,12 +33424,6 @@ } @Test - @TestMetadata("callableReferences.kt") - public void testCallableReferences() throws Exception { - runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/callableReferences.kt"); - } - - @Test @TestMetadata("delegatedProperty.kt") public void testDelegatedProperty() throws Exception { runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/delegatedProperty.kt"); @@ -34651,18 +34621,6 @@ } @Test - @TestMetadata("instanceOf.kt") - public void testInstanceOf() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOf.kt"); - } - - @Test - @TestMetadata("instanceOfArrays.kt") - public void testInstanceOfArrays() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOfArrays.kt"); - } - - @Test @TestMetadata("jaggedArray.kt") public void testJaggedArray() throws Exception { runTest("compiler/testData/codegen/box/reified/arraysReification/jaggedArray.kt"); @@ -35168,12 +35126,6 @@ } @Test - @TestMetadata("fieldInitializerOptimization_inlineClass.kt") - public void testFieldInitializerOptimization_inlineClass() throws Exception { - runTest("compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt"); - } - - @Test @TestMetadata("generics.kt") public void testGenerics() throws Exception { runTest("compiler/testData/codegen/box/secondaryConstructors/generics.kt"); @@ -36474,12 +36426,6 @@ public void testReturnToTypedArray() throws Exception { runTest("compiler/testData/codegen/box/toArray/returnToTypedArray.kt"); } - - @Test - @TestMetadata("toTypedArray.kt") - public void testToTypedArray() throws Exception { - runTest("compiler/testData/codegen/box/toArray/toTypedArray.kt"); - } } @Nested
diff --git a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsES6CodegenInlineTestGenerated.java b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsES6CodegenInlineTestGenerated.java index 172c460..6e7b0d8 100644 --- a/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsES6CodegenInlineTestGenerated.java +++ b/js/js.tests/tests-gen/org/jetbrains/kotlin/js/test/ir/IrJsES6CodegenInlineTestGenerated.java
@@ -3529,12 +3529,6 @@ } @Test - @TestMetadata("kt15956.kt") - public void testKt15956() throws Exception { - runTest("compiler/testData/codegen/boxInline/reified/kt15956.kt"); - } - - @Test @TestMetadata("kt18977.kt") public void testKt18977() throws Exception { runTest("compiler/testData/codegen/boxInline/reified/kt18977.kt");
diff --git a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/FirNativeCodegenBoxTestGenerated.java b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/FirNativeCodegenBoxTestGenerated.java index 57b2018..bcc8c9b 100644 --- a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/FirNativeCodegenBoxTestGenerated.java +++ b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/FirNativeCodegenBoxTestGenerated.java
@@ -678,12 +678,6 @@ } @Test - @TestMetadata("kt7338.kt") - public void testKt7338() throws Exception { - runTest("compiler/testData/codegen/box/arrays/kt7338.kt"); - } - - @Test @TestMetadata("kt779.kt") public void testKt779() throws Exception { runTest("compiler/testData/codegen/box/arrays/kt779.kt"); @@ -14502,12 +14496,6 @@ runTest("compiler/testData/codegen/box/extensionFunctions/virtual.kt"); } - @Test - @TestMetadata("whenFail.kt") - public void testWhenFail() throws Exception { - runTest("compiler/testData/codegen/box/extensionFunctions/whenFail.kt"); - } - @Nested @TestMetadata("compiler/testData/codegen/box/extensionFunctions/contextReceivers") @TestDataPath("$PROJECT_ROOT") @@ -16178,18 +16166,6 @@ } @Test - @TestMetadata("smartCastToDifferentTypes.kt") - public void testSmartCastToDifferentTypes() throws Exception { - runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypes.kt"); - } - - @Test - @TestMetadata("smartCastToDifferentTypesWithNumericPromotion.kt") - public void testSmartCastToDifferentTypesWithNumericPromotion() throws Exception { - runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypesWithNumericPromotion.kt"); - } - - @Test @TestMetadata("smartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons.kt") public void testSmartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons() throws Exception { runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons.kt"); @@ -24635,18 +24611,6 @@ public void testAllFilesPresentInGenerics() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/javaInterop/generics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.NATIVE, true); } - - @Test - @TestMetadata("kt42824.kt") - public void testKt42824() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42824.kt"); - } - - @Test - @TestMetadata("kt42825.kt") - public void testKt42825() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42825.kt"); - } } @Nested @@ -36949,12 +36913,6 @@ } @Test - @TestMetadata("callableReferences.kt") - public void testCallableReferences() throws Exception { - runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/callableReferences.kt"); - } - - @Test @TestMetadata("delegatedProperty.kt") public void testDelegatedProperty() throws Exception { runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/delegatedProperty.kt"); @@ -38158,18 +38116,6 @@ } @Test - @TestMetadata("instanceOf.kt") - public void testInstanceOf() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOf.kt"); - } - - @Test - @TestMetadata("instanceOfArrays.kt") - public void testInstanceOfArrays() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOfArrays.kt"); - } - - @Test @TestMetadata("jaggedArray.kt") public void testJaggedArray() throws Exception { runTest("compiler/testData/codegen/box/reified/arraysReification/jaggedArray.kt"); @@ -38711,12 +38657,6 @@ } @Test - @TestMetadata("fieldInitializerOptimization_inlineClass.kt") - public void testFieldInitializerOptimization_inlineClass() throws Exception { - runTest("compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt"); - } - - @Test @TestMetadata("generics.kt") public void testGenerics() throws Exception { runTest("compiler/testData/codegen/box/secondaryConstructors/generics.kt"); @@ -40059,12 +39999,6 @@ public void testReturnToTypedArray() throws Exception { runTest("compiler/testData/codegen/box/toArray/returnToTypedArray.kt"); } - - @Test - @TestMetadata("toTypedArray.kt") - public void testToTypedArray() throws Exception { - runTest("compiler/testData/codegen/box/toArray/toTypedArray.kt"); - } } @Nested @@ -45625,12 +45559,6 @@ } @Test - @TestMetadata("kt15956.kt") - public void testKt15956() throws Exception { - runTest("compiler/testData/codegen/boxInline/reified/kt15956.kt"); - } - - @Test @TestMetadata("kt18977.kt") public void testKt18977() throws Exception { runTest("compiler/testData/codegen/boxInline/reified/kt18977.kt");
diff --git a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/FirNativeCodegenBoxTestNoPLGenerated.java b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/FirNativeCodegenBoxTestNoPLGenerated.java index 4a887eb..a2ce022 100644 --- a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/FirNativeCodegenBoxTestNoPLGenerated.java +++ b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/FirNativeCodegenBoxTestNoPLGenerated.java
@@ -698,12 +698,6 @@ } @Test - @TestMetadata("kt7338.kt") - public void testKt7338() throws Exception { - runTest("compiler/testData/codegen/box/arrays/kt7338.kt"); - } - - @Test @TestMetadata("kt779.kt") public void testKt779() throws Exception { runTest("compiler/testData/codegen/box/arrays/kt779.kt"); @@ -14836,12 +14830,6 @@ runTest("compiler/testData/codegen/box/extensionFunctions/virtual.kt"); } - @Test - @TestMetadata("whenFail.kt") - public void testWhenFail() throws Exception { - runTest("compiler/testData/codegen/box/extensionFunctions/whenFail.kt"); - } - @Nested @TestMetadata("compiler/testData/codegen/box/extensionFunctions/contextReceivers") @TestDataPath("$PROJECT_ROOT") @@ -16550,18 +16538,6 @@ } @Test - @TestMetadata("smartCastToDifferentTypes.kt") - public void testSmartCastToDifferentTypes() throws Exception { - runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypes.kt"); - } - - @Test - @TestMetadata("smartCastToDifferentTypesWithNumericPromotion.kt") - public void testSmartCastToDifferentTypesWithNumericPromotion() throws Exception { - runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypesWithNumericPromotion.kt"); - } - - @Test @TestMetadata("smartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons.kt") public void testSmartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons() throws Exception { runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons.kt"); @@ -25125,18 +25101,6 @@ public void testAllFilesPresentInGenerics() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/javaInterop/generics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.NATIVE, true); } - - @Test - @TestMetadata("kt42824.kt") - public void testKt42824() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42824.kt"); - } - - @Test - @TestMetadata("kt42825.kt") - public void testKt42825() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42825.kt"); - } } @Nested @@ -37849,12 +37813,6 @@ } @Test - @TestMetadata("callableReferences.kt") - public void testCallableReferences() throws Exception { - runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/callableReferences.kt"); - } - - @Test @TestMetadata("delegatedProperty.kt") public void testDelegatedProperty() throws Exception { runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/delegatedProperty.kt"); @@ -39098,18 +39056,6 @@ } @Test - @TestMetadata("instanceOf.kt") - public void testInstanceOf() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOf.kt"); - } - - @Test - @TestMetadata("instanceOfArrays.kt") - public void testInstanceOfArrays() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOfArrays.kt"); - } - - @Test @TestMetadata("jaggedArray.kt") public void testJaggedArray() throws Exception { runTest("compiler/testData/codegen/box/reified/arraysReification/jaggedArray.kt"); @@ -39675,12 +39621,6 @@ } @Test - @TestMetadata("fieldInitializerOptimization_inlineClass.kt") - public void testFieldInitializerOptimization_inlineClass() throws Exception { - runTest("compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt"); - } - - @Test @TestMetadata("generics.kt") public void testGenerics() throws Exception { runTest("compiler/testData/codegen/box/secondaryConstructors/generics.kt"); @@ -41059,12 +40999,6 @@ public void testReturnToTypedArray() throws Exception { runTest("compiler/testData/codegen/box/toArray/returnToTypedArray.kt"); } - - @Test - @TestMetadata("toTypedArray.kt") - public void testToTypedArray() throws Exception { - runTest("compiler/testData/codegen/box/toArray/toTypedArray.kt"); - } } @Nested @@ -46785,12 +46719,6 @@ } @Test - @TestMetadata("kt15956.kt") - public void testKt15956() throws Exception { - runTest("compiler/testData/codegen/boxInline/reified/kt15956.kt"); - } - - @Test @TestMetadata("kt18977.kt") public void testKt18977() throws Exception { runTest("compiler/testData/codegen/boxInline/reified/kt18977.kt");
diff --git a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestGenerated.java b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestGenerated.java index f2a31ee..6130806 100644 --- a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestGenerated.java +++ b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestGenerated.java
@@ -669,12 +669,6 @@ } @Test - @TestMetadata("kt7338.kt") - public void testKt7338() throws Exception { - runTest("compiler/testData/codegen/box/arrays/kt7338.kt"); - } - - @Test @TestMetadata("kt779.kt") public void testKt779() throws Exception { runTest("compiler/testData/codegen/box/arrays/kt779.kt"); @@ -14336,12 +14330,6 @@ runTest("compiler/testData/codegen/box/extensionFunctions/virtual.kt"); } - @Test - @TestMetadata("whenFail.kt") - public void testWhenFail() throws Exception { - runTest("compiler/testData/codegen/box/extensionFunctions/whenFail.kt"); - } - @Nested @TestMetadata("compiler/testData/codegen/box/extensionFunctions/contextReceivers") @TestDataPath("$PROJECT_ROOT") @@ -15993,18 +15981,6 @@ } @Test - @TestMetadata("smartCastToDifferentTypes.kt") - public void testSmartCastToDifferentTypes() throws Exception { - runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypes.kt"); - } - - @Test - @TestMetadata("smartCastToDifferentTypesWithNumericPromotion.kt") - public void testSmartCastToDifferentTypesWithNumericPromotion() throws Exception { - runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypesWithNumericPromotion.kt"); - } - - @Test @TestMetadata("smartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons.kt") public void testSmartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons() throws Exception { runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons.kt"); @@ -24391,18 +24367,6 @@ public void testAllFilesPresentInGenerics() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/javaInterop/generics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.NATIVE, true); } - - @Test - @TestMetadata("kt42824.kt") - public void testKt42824() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42824.kt"); - } - - @Test - @TestMetadata("kt42825.kt") - public void testKt42825() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42825.kt"); - } } @Nested @@ -36500,12 +36464,6 @@ } @Test - @TestMetadata("callableReferences.kt") - public void testCallableReferences() throws Exception { - runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/callableReferences.kt"); - } - - @Test @TestMetadata("delegatedProperty.kt") public void testDelegatedProperty() throws Exception { runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/delegatedProperty.kt"); @@ -37689,18 +37647,6 @@ } @Test - @TestMetadata("instanceOf.kt") - public void testInstanceOf() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOf.kt"); - } - - @Test - @TestMetadata("instanceOfArrays.kt") - public void testInstanceOfArrays() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOfArrays.kt"); - } - - @Test @TestMetadata("jaggedArray.kt") public void testJaggedArray() throws Exception { runTest("compiler/testData/codegen/box/reified/arraysReification/jaggedArray.kt"); @@ -38230,12 +38176,6 @@ } @Test - @TestMetadata("fieldInitializerOptimization_inlineClass.kt") - public void testFieldInitializerOptimization_inlineClass() throws Exception { - runTest("compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt"); - } - - @Test @TestMetadata("generics.kt") public void testGenerics() throws Exception { runTest("compiler/testData/codegen/box/secondaryConstructors/generics.kt"); @@ -39560,12 +39500,6 @@ public void testReturnToTypedArray() throws Exception { runTest("compiler/testData/codegen/box/toArray/returnToTypedArray.kt"); } - - @Test - @TestMetadata("toTypedArray.kt") - public void testToTypedArray() throws Exception { - runTest("compiler/testData/codegen/box/toArray/toTypedArray.kt"); - } } @Nested @@ -45046,12 +44980,6 @@ } @Test - @TestMetadata("kt15956.kt") - public void testKt15956() throws Exception { - runTest("compiler/testData/codegen/boxInline/reified/kt15956.kt"); - } - - @Test @TestMetadata("kt18977.kt") public void testKt18977() throws Exception { runTest("compiler/testData/codegen/boxInline/reified/kt18977.kt");
diff --git a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestNoPLGenerated.java b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestNoPLGenerated.java index c20b67e..c81e951 100644 --- a/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestNoPLGenerated.java +++ b/native/native.tests/tests-gen/org/jetbrains/kotlin/konan/blackboxtest/NativeCodegenBoxTestNoPLGenerated.java
@@ -679,12 +679,6 @@ } @Test - @TestMetadata("kt7338.kt") - public void testKt7338() throws Exception { - runTest("compiler/testData/codegen/box/arrays/kt7338.kt"); - } - - @Test @TestMetadata("kt779.kt") public void testKt779() throws Exception { runTest("compiler/testData/codegen/box/arrays/kt779.kt"); @@ -14503,12 +14497,6 @@ runTest("compiler/testData/codegen/box/extensionFunctions/virtual.kt"); } - @Test - @TestMetadata("whenFail.kt") - public void testWhenFail() throws Exception { - runTest("compiler/testData/codegen/box/extensionFunctions/whenFail.kt"); - } - @Nested @TestMetadata("compiler/testData/codegen/box/extensionFunctions/contextReceivers") @TestDataPath("$PROJECT_ROOT") @@ -16179,18 +16167,6 @@ } @Test - @TestMetadata("smartCastToDifferentTypes.kt") - public void testSmartCastToDifferentTypes() throws Exception { - runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypes.kt"); - } - - @Test - @TestMetadata("smartCastToDifferentTypesWithNumericPromotion.kt") - public void testSmartCastToDifferentTypesWithNumericPromotion() throws Exception { - runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypesWithNumericPromotion.kt"); - } - - @Test @TestMetadata("smartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons.kt") public void testSmartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons() throws Exception { runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons.kt"); @@ -24636,18 +24612,6 @@ public void testAllFilesPresentInGenerics() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/javaInterop/generics"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.NATIVE, true); } - - @Test - @TestMetadata("kt42824.kt") - public void testKt42824() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42824.kt"); - } - - @Test - @TestMetadata("kt42825.kt") - public void testKt42825() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42825.kt"); - } } @Nested @@ -36950,12 +36914,6 @@ } @Test - @TestMetadata("callableReferences.kt") - public void testCallableReferences() throws Exception { - runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/callableReferences.kt"); - } - - @Test @TestMetadata("delegatedProperty.kt") public void testDelegatedProperty() throws Exception { runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/delegatedProperty.kt"); @@ -38159,18 +38117,6 @@ } @Test - @TestMetadata("instanceOf.kt") - public void testInstanceOf() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOf.kt"); - } - - @Test - @TestMetadata("instanceOfArrays.kt") - public void testInstanceOfArrays() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOfArrays.kt"); - } - - @Test @TestMetadata("jaggedArray.kt") public void testJaggedArray() throws Exception { runTest("compiler/testData/codegen/box/reified/arraysReification/jaggedArray.kt"); @@ -38712,12 +38658,6 @@ } @Test - @TestMetadata("fieldInitializerOptimization_inlineClass.kt") - public void testFieldInitializerOptimization_inlineClass() throws Exception { - runTest("compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt"); - } - - @Test @TestMetadata("generics.kt") public void testGenerics() throws Exception { runTest("compiler/testData/codegen/box/secondaryConstructors/generics.kt"); @@ -40060,12 +40000,6 @@ public void testReturnToTypedArray() throws Exception { runTest("compiler/testData/codegen/box/toArray/returnToTypedArray.kt"); } - - @Test - @TestMetadata("toTypedArray.kt") - public void testToTypedArray() throws Exception { - runTest("compiler/testData/codegen/box/toArray/toTypedArray.kt"); - } } @Nested @@ -45626,12 +45560,6 @@ } @Test - @TestMetadata("kt15956.kt") - public void testKt15956() throws Exception { - runTest("compiler/testData/codegen/boxInline/reified/kt15956.kt"); - } - - @Test @TestMetadata("kt18977.kt") public void testKt18977() throws Exception { runTest("compiler/testData/codegen/boxInline/reified/kt18977.kt");
diff --git a/wasm/wasm.tests/tests-gen/org/jetbrains/kotlin/wasm/test/IrCodegenBoxInlineWasmTestGenerated.java b/wasm/wasm.tests/tests-gen/org/jetbrains/kotlin/wasm/test/IrCodegenBoxInlineWasmTestGenerated.java index e1009e4..29b8707 100644 --- a/wasm/wasm.tests/tests-gen/org/jetbrains/kotlin/wasm/test/IrCodegenBoxInlineWasmTestGenerated.java +++ b/wasm/wasm.tests/tests-gen/org/jetbrains/kotlin/wasm/test/IrCodegenBoxInlineWasmTestGenerated.java
@@ -3229,11 +3229,6 @@ runTest("compiler/testData/codegen/boxInline/reified/dontSubstituteNonReified.kt"); } - @TestMetadata("kt15956.kt") - public void testKt15956() throws Exception { - runTest("compiler/testData/codegen/boxInline/reified/kt15956.kt"); - } - @TestMetadata("kt18977.kt") public void testKt18977() throws Exception { runTest("compiler/testData/codegen/boxInline/reified/kt18977.kt");
diff --git a/wasm/wasm.tests/tests-gen/org/jetbrains/kotlin/wasm/test/IrCodegenBoxWasmTestGenerated.java b/wasm/wasm.tests/tests-gen/org/jetbrains/kotlin/wasm/test/IrCodegenBoxWasmTestGenerated.java index 783c0bf..b77fed6 100644 --- a/wasm/wasm.tests/tests-gen/org/jetbrains/kotlin/wasm/test/IrCodegenBoxWasmTestGenerated.java +++ b/wasm/wasm.tests/tests-gen/org/jetbrains/kotlin/wasm/test/IrCodegenBoxWasmTestGenerated.java
@@ -579,11 +579,6 @@ runTest("compiler/testData/codegen/box/arrays/kt7288.kt"); } - @TestMetadata("kt7338.kt") - public void testKt7338() throws Exception { - runTest("compiler/testData/codegen/box/arrays/kt7338.kt"); - } - @TestMetadata("kt779.kt") public void testKt779() throws Exception { runTest("compiler/testData/codegen/box/arrays/kt779.kt"); @@ -11829,11 +11824,6 @@ runTest("compiler/testData/codegen/box/extensionFunctions/virtual.kt"); } - @TestMetadata("whenFail.kt") - public void testWhenFail() throws Exception { - runTest("compiler/testData/codegen/box/extensionFunctions/whenFail.kt"); - } - @TestMetadata("compiler/testData/codegen/box/extensionFunctions/contextReceivers") @TestDataPath("$PROJECT_ROOT") @RunWith(JUnit3RunnerWithInners.class) @@ -13266,16 +13256,6 @@ runTest("compiler/testData/codegen/box/ieee754/smartCastOnWhenSubjectAfterCheckInBranch_properIeeeComparisons.kt"); } - @TestMetadata("smartCastToDifferentTypes.kt") - public void testSmartCastToDifferentTypes() throws Exception { - runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypes.kt"); - } - - @TestMetadata("smartCastToDifferentTypesWithNumericPromotion.kt") - public void testSmartCastToDifferentTypesWithNumericPromotion() throws Exception { - runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypesWithNumericPromotion.kt"); - } - @TestMetadata("smartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons.kt") public void testSmartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons() throws Exception { runTest("compiler/testData/codegen/box/ieee754/smartCastToDifferentTypesWithNumericPromotion_properIeeeComparisons.kt"); @@ -19149,16 +19129,6 @@ public void testAllFilesPresentInGenerics() throws Exception { KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/javaInterop/generics"), Pattern.compile("^([^_](.+))\\.kt$"), null, TargetBackend.WASM, true); } - - @TestMetadata("kt42824.kt") - public void testKt42824() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42824.kt"); - } - - @TestMetadata("kt42825.kt") - public void testKt42825() throws Exception { - runTest("compiler/testData/codegen/box/javaInterop/generics/kt42825.kt"); - } } @TestMetadata("compiler/testData/codegen/box/javaInterop/notNullAssertions") @@ -29834,11 +29804,6 @@ KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny"), Pattern.compile("^([^_](.+))\\.kt$"), null, TargetBackend.WASM, true); } - @TestMetadata("callableReferences.kt") - public void testCallableReferences() throws Exception { - runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/callableReferences.kt"); - } - @TestMetadata("delegatedProperty.kt") public void testDelegatedProperty() throws Exception { runTest("compiler/testData/codegen/box/reflection/noReflectAtRuntime/methodsFromAny/delegatedProperty.kt"); @@ -30880,16 +30845,6 @@ KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/reified/arraysReification"), Pattern.compile("^([^_](.+))\\.kt$"), null, TargetBackend.WASM, true); } - @TestMetadata("instanceOf.kt") - public void testInstanceOf() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOf.kt"); - } - - @TestMetadata("instanceOfArrays.kt") - public void testInstanceOfArrays() throws Exception { - runTest("compiler/testData/codegen/box/reified/arraysReification/instanceOfArrays.kt"); - } - @TestMetadata("jaggedArray.kt") public void testJaggedArray() throws Exception { runTest("compiler/testData/codegen/box/reified/arraysReification/jaggedArray.kt"); @@ -31367,11 +31322,6 @@ runTest("compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization.kt"); } - @TestMetadata("fieldInitializerOptimization_inlineClass.kt") - public void testFieldInitializerOptimization_inlineClass() throws Exception { - runTest("compiler/testData/codegen/box/secondaryConstructors/fieldInitializerOptimization_inlineClass.kt"); - } - @TestMetadata("generics.kt") public void testGenerics() throws Exception { runTest("compiler/testData/codegen/box/secondaryConstructors/generics.kt"); @@ -32560,11 +32510,6 @@ public void testReturnToTypedArray() throws Exception { runTest("compiler/testData/codegen/box/toArray/returnToTypedArray.kt"); } - - @TestMetadata("toTypedArray.kt") - public void testToTypedArray() throws Exception { - runTest("compiler/testData/codegen/box/toArray/toTypedArray.kt"); - } } @TestMetadata("compiler/testData/codegen/box/topLevelInitializtion")