Files
kotlin/compiler/testData/codegen/bytecodeText/noNumberCheckCast.kt
2016-06-02 16:01:05 +03:00

11 lines
178 B
Kotlin
Vendored

fun test() {
val z : Int? = 1
val r = z!! + 1
stubPreventBoxingOptimization(z)
}
fun stubPreventBoxingOptimization(s: Int?) {
s
}
//0 CHECKCAST java/lang/Number