Files
kotlin/compiler/testData/codegen/bytecodeText/boxingOptimization/simpleUninitializedMerge.kt
2018-12-21 16:20:45 +01:00

12 lines
185 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM_IR
fun box(): String {
var result = 0
if (1 == 1) {
val x: Int? = 1
result += x!!
}
return "OK"
}
// 0 java/lang/Integer.valueOf