Support default inline lambda reification

This commit is contained in:
Mikhael Bogdanov
2017-05-15 11:57:06 +02:00
parent 9e8495dc3d
commit 6730fa2bbf
10 changed files with 96 additions and 14 deletions
@@ -2184,6 +2184,18 @@ public class BlackBoxInlineCodegenTestGenerated extends AbstractBlackBoxInlineCo
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda/simple.kt");
doTest(fileName);
}
@TestMetadata("transitiveChain.kt")
public void testTransitiveChain() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda/transitiveChain.kt");
doTest(fileName);
}
@TestMetadata("transitiveChainStatic.kt")
public void testTransitiveChainStatic() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/boxInline/reified/defaultLambda/transitiveChainStatic.kt");
doTest(fileName);
}
}
@TestMetadata("compiler/testData/codegen/boxInline/reified/isCheck")