mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-07 08:31:28 +00:00
11 lines
178 B
Kotlin
Vendored
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 |