[NI] Don't process lambda until expected type will be fixed

This commit is contained in:
Mikhail Zarechenskiy
2017-08-22 14:35:23 +03:00
parent ff4f928420
commit f31c48017b
12 changed files with 157 additions and 39 deletions
@@ -17018,6 +17018,18 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest {
doTest(fileName);
}
@TestMetadata("lambdaPostponeConstruction.kt")
public void testLambdaPostponeConstruction() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/regressions/lambdaPostponeConstruction.kt");
doTest(fileName);
}
@TestMetadata("lambdaWrongReturnType.kt")
public void testLambdaWrongReturnType() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/regressions/lambdaWrongReturnType.kt");
doTest(fileName);
}
@TestMetadata("nestedIntersection.kt")
public void testNestedIntersection() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/regressions/nestedIntersection.kt");