Add tests for KT-52745

This commit is contained in:
Mikhail Glukhikh
2022-06-14 18:41:15 +02:00
committed by Space
parent 00d7a755a9
commit 966e2442c6
12 changed files with 521 additions and 0 deletions
@@ -15229,6 +15229,12 @@ public class IrBlackBoxCodegenTestGenerated extends AbstractIrBlackBoxCodegenTes
runTest("compiler/testData/codegen/box/delegation/mixed.kt");
}
@Test
@TestMetadata("sealedClass.kt")
public void testSealedClass() throws Exception {
runTest("compiler/testData/codegen/box/delegation/sealedClass.kt");
}
@Test
@TestMetadata("simple.kt")
public void testSimple() throws Exception {
@@ -337,6 +337,12 @@ public class IrTextTestGenerated extends AbstractIrTextTest {
runTest("compiler/testData/ir/irText/classes/dataClasses/dataClassesGeneric.kt");
}
@Test
@TestMetadata("delegationInSealed.kt")
public void testDelegationInSealed() throws Exception {
runTest("compiler/testData/ir/irText/classes/dataClasses/delegationInSealed.kt");
}
@Test
@TestMetadata("kt31649.kt")
public void testKt31649() throws Exception {