long == <int_literal> in Java converted to red code in Kotlin #KT-19393 Fixed

This commit is contained in:
Toshiaki Kameyama
2017-08-10 15:43:45 +09:00
committed by Simon Ogorodnik
parent 79ecc7fd5c
commit 905b8cc4e9
3 changed files with 16 additions and 1 deletions
@@ -20,4 +20,9 @@ class A {
l2 = 10L
l4 = 10
}
void foo(long z) {
boolean b1 = z == 1;
boolean b2 = z != 1;
}
}