Minor. Add regression test

#KT-52561 Fixed
This commit is contained in:
Ilmir Usmanov
2022-05-29 19:19:47 +02:00
committed by teamcity
parent 4a7a0126f2
commit f922684169
9 changed files with 77 additions and 0 deletions
@@ -7193,6 +7193,12 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
runTest("compiler/testData/codegen/box/coroutines/kt52311_nullOnRight.kt");
}
@Test
@TestMetadata("kt52561.kt")
public void testKt52561() throws Exception {
runTest("compiler/testData/codegen/box/coroutines/kt52561.kt");
}
@Test
@TestMetadata("lastExpressionIsLoop.kt")
public void testLastExpressionIsLoop() throws Exception {
@@ -7235,6 +7235,12 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest {
runTest("compiler/testData/codegen/box/coroutines/kt52311_nullOnRight.kt");
}
@Test
@TestMetadata("kt52561.kt")
public void testKt52561() throws Exception {
runTest("compiler/testData/codegen/box/coroutines/kt52561.kt");
}
@Test
@TestMetadata("lastExpressionIsLoop.kt")
public void testLastExpressionIsLoop() throws Exception {
@@ -6364,6 +6364,11 @@ public class IrCodegenBoxWasmTestGenerated extends AbstractIrCodegenBoxWasmTest
runTest("compiler/testData/codegen/box/coroutines/kt52311_nullOnRight.kt");
}
@TestMetadata("kt52561.kt")
public void testKt52561() throws Exception {
runTest("compiler/testData/codegen/box/coroutines/kt52561.kt");
}
@TestMetadata("lastExpressionIsLoop.kt")
public void testLastExpressionIsLoop() throws Exception {
runTest("compiler/testData/codegen/box/coroutines/lastExpressionIsLoop.kt");