Fixed test in evaluateExpression (redundant boxing was removed)
This commit is contained in:
committed by
Alexander Udalov
parent
602e60f72e
commit
433c9cd4a5
@@ -5,7 +5,7 @@ import java.util.HashSet
|
|||||||
|
|
||||||
fun primitiveTypes() {
|
fun primitiveTypes() {
|
||||||
if (true) {
|
if (true) {
|
||||||
val a: Any = 0
|
val a: Any = if (1 == 1) 0 else "abc"
|
||||||
// EXPRESSION: a
|
// EXPRESSION: a
|
||||||
// RESULT: instance of java.lang.Integer(id=ID): Ljava/lang/Integer;
|
// RESULT: instance of java.lang.Integer(id=ID): Ljava/lang/Integer;
|
||||||
//Breakpoint!
|
//Breakpoint!
|
||||||
|
|||||||
Reference in New Issue
Block a user