Fixed test in evaluateExpression (redundant boxing was removed)

This commit is contained in:
Denis Zharkov
2014-07-11 10:39:02 +04:00
committed by Alexander Udalov
parent 602e60f72e
commit 433c9cd4a5
@@ -5,7 +5,7 @@ import java.util.HashSet
fun primitiveTypes() {
if (true) {
val a: Any = 0
val a: Any = if (1 == 1) 0 else "abc"
// EXPRESSION: a
// RESULT: instance of java.lang.Integer(id=ID): Ljava/lang/Integer;
//Breakpoint!