mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
12 lines
185 B
Kotlin
Vendored
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
|