Files
kotlin/compiler/testData/codegen/bytecodeText/boxingOptimization/variableClash.kt
Denis Zharkov 0f5e29df9b tests added
2014-07-15 21:26:53 +04:00

15 lines
236 B
Kotlin
Vendored

fun bar() {
var x : Object? = java.lang.Integer.valueOf(1) as Object?
val y1 : Int = (x as Int?)!!
x = java.lang.Long.valueOf(1) as Object?
val y2 : Long = (x as Long?)!!
}
// 2 valueOf
// 1 intValue
// 1 longValue