febac0dd5f
^KT-65979
11 lines
147 B
Kotlin
Vendored
11 lines
147 B
Kotlin
Vendored
// WITH_STDLIB
|
|
import kotlin.test.*
|
|
|
|
fun box(): String {
|
|
val i: Int? = 1234
|
|
requireNotNull(i)
|
|
assertEquals(i, 1234)
|
|
|
|
return "OK"
|
|
}
|