[FIR] KT-54692: Fix compiler crash on UInt.shl
Merge-request: KT-MR-7513 Merged-by: Nikolay Lunyak <Nikolay.Lunyak@jetbrains.com>
This commit is contained in:
committed by
Space Team
parent
34478b84cd
commit
7e323f8ac6
+6
@@ -30752,6 +30752,12 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/unsigned"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS, true);
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("bitShifting.kt")
|
||||
public void testBitShifting() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/ranges/unsigned/bitShifting.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("inMixedUnsignedRange.kt")
|
||||
public void testInMixedUnsignedRange() throws Exception {
|
||||
|
||||
+6
@@ -30932,6 +30932,12 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/unsigned"), Pattern.compile("^(.+)\\.kt$"), null, TargetBackend.JS_IR, true);
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("bitShifting.kt")
|
||||
public void testBitShifting() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/ranges/unsigned/bitShifting.kt");
|
||||
}
|
||||
|
||||
@Test
|
||||
@TestMetadata("inMixedUnsignedRange.kt")
|
||||
public void testInMixedUnsignedRange() throws Exception {
|
||||
|
||||
+5
@@ -27640,6 +27640,11 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
|
||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/ranges/unsigned"), Pattern.compile("^([^_](.+))\\.kt$"), null, TargetBackend.WASM, true);
|
||||
}
|
||||
|
||||
@TestMetadata("bitShifting.kt")
|
||||
public void testBitShifting() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/ranges/unsigned/bitShifting.kt");
|
||||
}
|
||||
|
||||
@TestMetadata("inMixedUnsignedRange.kt")
|
||||
public void testInMixedUnsignedRange() throws Exception {
|
||||
runTest("compiler/testData/codegen/box/ranges/unsigned/inMixedUnsignedRange.kt");
|
||||
|
||||
Reference in New Issue
Block a user