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 fc36e4f3c29..46f0c29776b 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 @@ -52985,6 +52985,12 @@ public class FirLightTreeBlackBoxCodegenTestGenerated extends AbstractFirLightTr runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt"); } + @Test + @TestMetadata("integralWhenWithNoInlinedConstants2.kt") + public void testIntegralWhenWithNoInlinedConstants2() throws Exception { + runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt"); + } + @Test @TestMetadata("is.kt") public void testIs() throws Exception { 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 522d1aea5e9..5d2677b2dc7 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 @@ -52985,6 +52985,12 @@ public class FirPsiBlackBoxCodegenTestGenerated extends AbstractFirPsiBlackBoxCo runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt"); } + @Test + @TestMetadata("integralWhenWithNoInlinedConstants2.kt") + public void testIntegralWhenWithNoInlinedConstants2() throws Exception { + runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt"); + } + @Test @TestMetadata("is.kt") public void testIs() throws Exception { diff --git a/compiler/testData/codegen/box/traits/noPrivateDelegation.kt b/compiler/testData/codegen/box/traits/noPrivateDelegation.kt index 28d9ca52aa1..d6cd96a7d5f 100644 --- a/compiler/testData/codegen/box/traits/noPrivateDelegation.kt +++ b/compiler/testData/codegen/box/traits/noPrivateDelegation.kt @@ -1,9 +1,5 @@ -// 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, NATIVE +// TARGET_BACKEND: JVM +// TARGET_BACKEND: JVM_IR package test diff --git a/compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt b/compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt index f7f268f2823..2c0eeecb954 100644 --- a/compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt +++ b/compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt @@ -1,9 +1,5 @@ -// 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, NATIVE +// TARGET_BACKEND: JVM +// TARGET_BACKEND: JVM_IR // WITH_STDLIB diff --git a/compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt b/compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt new file mode 100644 index 00000000000..8972ed327df --- /dev/null +++ b/compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt @@ -0,0 +1,23 @@ +fun foo1(x: Int): Boolean { + when(x) { + 2 + 2 -> return true + else -> return false + } +} + +fun foo2(x: Int): Boolean { + when(x) { + Int.MAX_VALUE -> return true + else -> return false + } +} + +fun box(): String { + if(!foo1(4)) return "FAIL: foo1(4) must be true" + if(foo1(1)) return "FAIL: foo1(1) must be false" + + if(!foo2(Int.MAX_VALUE)) return "FAIL: foo2(Int.MAX_VALUE) must be true" + if(foo2(1)) return "FAIL: foo2(1) must be false" + + return "OK" +} diff --git a/compiler/testData/codegen/boxInline/complex/kt44429.kt b/compiler/testData/codegen/boxInline/complex/kt44429.kt index 950194e484b..0799e888fc8 100644 --- a/compiler/testData/codegen/boxInline/complex/kt44429.kt +++ b/compiler/testData/codegen/boxInline/complex/kt44429.kt @@ -1,4 +1,5 @@ // IGNORE_BACKEND: WASM +// https://youtrack.jetbrains.com/issue/KT-44571/Segfault-on-unnecessary-int-unboxing // IGNORE_BACKEND: NATIVE // NO_CHECK_LAMBDA_INLINING // 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 5df25a9877b..b1f06f07f02 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 @@ -49913,6 +49913,12 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest { runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt"); } + @Test + @TestMetadata("integralWhenWithNoInlinedConstants2.kt") + public void testIntegralWhenWithNoInlinedConstants2() throws Exception { + runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt"); + } + @Test @TestMetadata("is.kt") public void testIs() throws Exception { 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 9500baf2451..27cbec982f9 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 @@ -52985,6 +52985,12 @@ public class IrBlackBoxCodegenTestGenerated extends AbstractIrBlackBoxCodegenTes runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt"); } + @Test + @TestMetadata("integralWhenWithNoInlinedConstants2.kt") + public void testIntegralWhenWithNoInlinedConstants2() throws Exception { + runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt"); + } + @Test @TestMetadata("is.kt") public void testIs() throws Exception { 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 3fdd1038149..a1f8a6fc76e 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 @@ -52985,6 +52985,12 @@ public class IrBlackBoxCodegenWithIrInlinerTestGenerated extends AbstractIrBlack runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt"); } + @Test + @TestMetadata("integralWhenWithNoInlinedConstants2.kt") + public void testIntegralWhenWithNoInlinedConstants2() throws Exception { + runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt"); + } + @Test @TestMetadata("is.kt") public void testIs() throws Exception { diff --git a/compiler/tests-gen/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java b/compiler/tests-gen/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java index 3e7e1ae8f81..0c5dca4069b 100644 --- a/compiler/tests-gen/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java +++ b/compiler/tests-gen/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java @@ -42776,6 +42776,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt"); } + @TestMetadata("integralWhenWithNoInlinedConstants2.kt") + public void testIntegralWhenWithNoInlinedConstants2() throws Exception { + runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt"); + } + @TestMetadata("is.kt") public void testIs() throws Exception { runTest("compiler/testData/codegen/box/when/is.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 b30670df4aa..6b7f973b5d5 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 @@ -35755,12 +35755,6 @@ public class FirJsCodegenBoxTestGenerated extends AbstractFirJsCodegenBoxTest { runTest("compiler/testData/codegen/box/traits/multiple.kt"); } - @Test - @TestMetadata("noPrivateDelegation.kt") - public void testNoPrivateDelegation() throws Exception { - runTest("compiler/testData/codegen/box/traits/noPrivateDelegation.kt"); - } - @Test @TestMetadata("privateInterfaceMethod.kt") public void testPrivateInterfaceMethod() throws Exception { @@ -36792,9 +36786,9 @@ public class FirJsCodegenBoxTestGenerated extends AbstractFirJsCodegenBoxTest { } @Test - @TestMetadata("integralWhenWithNoInlinedConstants.kt") - public void testIntegralWhenWithNoInlinedConstants() throws Exception { - runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt"); + @TestMetadata("integralWhenWithNoInlinedConstants2.kt") + public void testIntegralWhenWithNoInlinedConstants2() throws Exception { + runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt"); } @Test 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 2d9266792f6..bd7512886ac 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 @@ -35755,12 +35755,6 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest { runTest("compiler/testData/codegen/box/traits/multiple.kt"); } - @Test - @TestMetadata("noPrivateDelegation.kt") - public void testNoPrivateDelegation() throws Exception { - runTest("compiler/testData/codegen/box/traits/noPrivateDelegation.kt"); - } - @Test @TestMetadata("privateInterfaceMethod.kt") public void testPrivateInterfaceMethod() throws Exception { @@ -36792,9 +36786,9 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest { } @Test - @TestMetadata("integralWhenWithNoInlinedConstants.kt") - public void testIntegralWhenWithNoInlinedConstants() throws Exception { - runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt"); + @TestMetadata("integralWhenWithNoInlinedConstants2.kt") + public void testIntegralWhenWithNoInlinedConstants2() throws Exception { + runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt"); } @Test 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 fad4386e34f..ff747b543e7 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 @@ -35755,12 +35755,6 @@ public class IrJsES6CodegenBoxTestGenerated extends AbstractIrJsES6CodegenBoxTes runTest("compiler/testData/codegen/box/traits/multiple.kt"); } - @Test - @TestMetadata("noPrivateDelegation.kt") - public void testNoPrivateDelegation() throws Exception { - runTest("compiler/testData/codegen/box/traits/noPrivateDelegation.kt"); - } - @Test @TestMetadata("privateInterfaceMethod.kt") public void testPrivateInterfaceMethod() throws Exception { @@ -36792,9 +36786,9 @@ public class IrJsES6CodegenBoxTestGenerated extends AbstractIrJsES6CodegenBoxTes } @Test - @TestMetadata("integralWhenWithNoInlinedConstants.kt") - public void testIntegralWhenWithNoInlinedConstants() throws Exception { - runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt"); + @TestMetadata("integralWhenWithNoInlinedConstants2.kt") + public void testIntegralWhenWithNoInlinedConstants2() throws Exception { + runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt"); } @Test 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 6261175abf7..de570cbf104 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 @@ -39301,12 +39301,6 @@ public class FirNativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTe runTest("compiler/testData/codegen/box/traits/multiple.kt"); } - @Test - @TestMetadata("noPrivateDelegation.kt") - public void testNoPrivateDelegation() throws Exception { - runTest("compiler/testData/codegen/box/traits/noPrivateDelegation.kt"); - } - @Test @TestMetadata("privateInterfaceMethod.kt") public void testPrivateInterfaceMethod() throws Exception { @@ -40407,9 +40401,9 @@ public class FirNativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTe } @Test - @TestMetadata("integralWhenWithNoInlinedConstants.kt") - public void testIntegralWhenWithNoInlinedConstants() throws Exception { - runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt"); + @TestMetadata("integralWhenWithNoInlinedConstants2.kt") + public void testIntegralWhenWithNoInlinedConstants2() throws Exception { + runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt"); } @Test 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 7fc7064c8c2..8c686952fb4 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 @@ -40307,12 +40307,6 @@ public class FirNativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenB runTest("compiler/testData/codegen/box/traits/multiple.kt"); } - @Test - @TestMetadata("noPrivateDelegation.kt") - public void testNoPrivateDelegation() throws Exception { - runTest("compiler/testData/codegen/box/traits/noPrivateDelegation.kt"); - } - @Test @TestMetadata("privateInterfaceMethod.kt") public void testPrivateInterfaceMethod() throws Exception { @@ -41439,9 +41433,9 @@ public class FirNativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenB } @Test - @TestMetadata("integralWhenWithNoInlinedConstants.kt") - public void testIntegralWhenWithNoInlinedConstants() throws Exception { - runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt"); + @TestMetadata("integralWhenWithNoInlinedConstants2.kt") + public void testIntegralWhenWithNoInlinedConstants2() throws Exception { + runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt"); } @Test 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 2f5a3261216..645fa32e7c9 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 @@ -38799,12 +38799,6 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest runTest("compiler/testData/codegen/box/traits/multiple.kt"); } - @Test - @TestMetadata("noPrivateDelegation.kt") - public void testNoPrivateDelegation() throws Exception { - runTest("compiler/testData/codegen/box/traits/noPrivateDelegation.kt"); - } - @Test @TestMetadata("privateInterfaceMethod.kt") public void testPrivateInterfaceMethod() throws Exception { @@ -39892,9 +39886,9 @@ public class NativeCodegenBoxTestGenerated extends AbstractNativeCodegenBoxTest } @Test - @TestMetadata("integralWhenWithNoInlinedConstants.kt") - public void testIntegralWhenWithNoInlinedConstants() throws Exception { - runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt"); + @TestMetadata("integralWhenWithNoInlinedConstants2.kt") + public void testIntegralWhenWithNoInlinedConstants2() throws Exception { + runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt"); } @Test 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 5867a782c95..68fb4edbd8e 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 @@ -39302,12 +39302,6 @@ public class NativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenBoxT runTest("compiler/testData/codegen/box/traits/multiple.kt"); } - @Test - @TestMetadata("noPrivateDelegation.kt") - public void testNoPrivateDelegation() throws Exception { - runTest("compiler/testData/codegen/box/traits/noPrivateDelegation.kt"); - } - @Test @TestMetadata("privateInterfaceMethod.kt") public void testPrivateInterfaceMethod() throws Exception { @@ -40408,9 +40402,9 @@ public class NativeCodegenBoxTestNoPLGenerated extends AbstractNativeCodegenBoxT } @Test - @TestMetadata("integralWhenWithNoInlinedConstants.kt") - public void testIntegralWhenWithNoInlinedConstants() throws Exception { - runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt"); + @TestMetadata("integralWhenWithNoInlinedConstants2.kt") + public void testIntegralWhenWithNoInlinedConstants2() throws Exception { + runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt"); } @Test 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 c4155f71662..98537ce6837 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 @@ -31965,11 +31965,6 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest runTest("compiler/testData/codegen/box/traits/multiple.kt"); } - @TestMetadata("noPrivateDelegation.kt") - public void testNoPrivateDelegation() throws Exception { - runTest("compiler/testData/codegen/box/traits/noPrivateDelegation.kt"); - } - @TestMetadata("privateInterfaceMethod.kt") public void testPrivateInterfaceMethod() throws Exception { runTest("compiler/testData/codegen/box/traits/privateInterfaceMethod.kt"); @@ -32889,9 +32884,9 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest runTest("compiler/testData/codegen/box/when/inferredTypeParameters.kt"); } - @TestMetadata("integralWhenWithNoInlinedConstants.kt") - public void testIntegralWhenWithNoInlinedConstants() throws Exception { - runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants.kt"); + @TestMetadata("integralWhenWithNoInlinedConstants2.kt") + public void testIntegralWhenWithNoInlinedConstants2() throws Exception { + runTest("compiler/testData/codegen/box/when/integralWhenWithNoInlinedConstants2.kt"); } @TestMetadata("is.kt")