Check type of elvis with expected type info

#KT-6713
This commit is contained in:
Denis Zharkov
2015-07-17 13:00:48 +03:00
parent 53edb83a56
commit 3ec00114c0
4 changed files with 33 additions and 1 deletions
@@ -423,6 +423,12 @@ public class BlackBoxAgainstJavaCodegenTestGenerated extends AbstractBlackBoxCod
String fileName = JetTestUtils.navigationMetadata("compiler/testData/codegen/boxAgainstJava/notNullAssertions/Delegation.kt");
doTestAgainstJava(fileName);
}
@TestMetadata("RightElvisOperand.kt")
public void testRightElvisOperand() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/codegen/boxAgainstJava/notNullAssertions/RightElvisOperand.kt");
doTestAgainstJava(fileName);
}
}
@TestMetadata("compiler/testData/codegen/boxAgainstJava/platformTypes")