JVM: add tests fixed by the last two commits

One was broken on JVM, the other on JVM_IR.
This commit is contained in:
pyos
2020-04-03 15:04:05 +02:00
committed by Ilmir Usmanov
parent 829343cf6f
commit 516692008f
6 changed files with 132 additions and 0 deletions
@@ -4044,6 +4044,16 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
public void testSimpleNamed() throws Exception {
runTest("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline/simpleNamed.kt");
}
@TestMetadata("withCapturedInlineLambda.kt")
public void testWithCapturedInlineLambda() throws Exception {
runTest("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline/withCapturedInlineLambda.kt");
}
@TestMetadata("withCapturedInlineLambda2.kt")
public void testWithCapturedInlineLambda2() throws Exception {
runTest("compiler/testData/codegen/boxInline/suspend/inlineUsedAsNoinline/withCapturedInlineLambda2.kt");
}
}
@TestMetadata("compiler/testData/codegen/boxInline/suspend/receiver")