Add diagnostics for default lambda inlining

This commit is contained in:
Mikhael Bogdanov
2017-05-15 16:52:15 +02:00
parent 81c2e1dd8c
commit 0ac23c789e
15 changed files with 282 additions and 14 deletions
@@ -941,6 +941,12 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
doTest(fileName);
}
@TestMetadata("varArgNoInline.kt")
public void testVarArgNoInline() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/boxInline/defaultValues/varArgNoInline.kt");
doTest(fileName);
}
@TestMetadata("compiler/testData/codegen/boxInline/defaultValues/lambdaInlining")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)