Files
kotlin-fork/compiler/testData/codegen/box/contracts/nonNullSmartCast.kt
T
2024-02-26 13:38:49 +00:00

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"
}