Ensure that no boolean negation is generated for !in expression

#KT-18777 Fixed Target versions 1.1.4
This commit is contained in:
Dmitry Petrov
2017-06-30 16:19:39 +03:00
parent b9c0ecf2b1
commit 4320b63922
3 changed files with 19 additions and 19 deletions
@@ -1853,9 +1853,9 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("compiler/testData/codegen/bytecodeText/ranges"), Pattern.compile("^(.+)\\.kt$"), TargetBackend.ANY, true);
}
@TestMetadata("ifNotInCollection.kt")
public void testIfNotInCollection() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/bytecodeText/ranges/ifNotInCollection.kt");
@TestMetadata("ifNotInRange.kt")
public void testIfNotInRange() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/bytecodeText/ranges/ifNotInRange.kt");
doTest(fileName);
}