mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
15 lines
206 B
Kotlin
Vendored
15 lines
206 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
import kotlin.test.assertEquals
|
|
|
|
fun box(): String {
|
|
var result = 0
|
|
if (1 == 1) {
|
|
val x: Int? = 1
|
|
result += x!!
|
|
}
|
|
|
|
assertEquals(1, result)
|
|
return "OK"
|
|
}
|