Add tests for obsolete issues

#KT-12126
 #KT-12189
 #KT-23628
 #KT-24209
 #KT-34338
 #KT-47279
 #KT-48498
This commit is contained in:
Alexander Udalov
2021-08-31 16:32:07 +02:00
committed by Space
parent 5c3ce66e99
commit d5372521f1
28 changed files with 400 additions and 0 deletions
@@ -12835,6 +12835,12 @@ public class ExternalTestGenerated extends AbstractExternalNativeBlackBoxTest {
runTest("compiler/testData/codegen/box/elvis/genericNull.kt");
}
@Test
@TestMetadata("kt24209.kt")
public void testKt24209() throws Exception {
runTest("compiler/testData/codegen/box/elvis/kt24209.kt");
}
@Test
@TestMetadata("kt6694ExactAnnotationForElvis.kt")
public void testKt6694ExactAnnotationForElvis() throws Exception {
@@ -31774,6 +31780,12 @@ public class ExternalTestGenerated extends AbstractExternalNativeBlackBoxTest {
runTest("compiler/testData/codegen/box/regressions/kt4281.kt");
}
@Test
@TestMetadata("kt47279.kt")
public void testKt47279() throws Exception {
runTest("compiler/testData/codegen/box/regressions/kt47279.kt");
}
@Test
@TestMetadata("kt5056.kt")
public void testKt5056() throws Exception {
@@ -37432,6 +37444,12 @@ public class ExternalTestGenerated extends AbstractExternalNativeBlackBoxTest {
runTest("compiler/testData/codegen/boxInline/delegatedProperty/kt16864.kt");
}
@Test
@TestMetadata("kt48498.kt")
public void testKt48498() throws Exception {
runTest("compiler/testData/codegen/boxInline/delegatedProperty/kt48498.kt");
}
@Test
@TestMetadata("local.kt")
public void testLocal() throws Exception {
@@ -37857,6 +37875,12 @@ public class ExternalTestGenerated extends AbstractExternalNativeBlackBoxTest {
public void testInnerInlineFunCapturesOuterWithInlineClass() throws Exception {
runTest("compiler/testData/codegen/boxInline/innerClasses/innerInlineFunCapturesOuterWithInlineClass.kt");
}
@Test
@TestMetadata("kt12126.kt")
public void testKt12126() throws Exception {
runTest("compiler/testData/codegen/boxInline/innerClasses/kt12126.kt");
}
}
@Nested