Files
kotlin-fork/native/native.tests/testData/codegen/contracts/nonNullSmartCast.kt
T
Vladimir Sukharev df2dcccbf7 [Tests] Removed moved tests from old testing
^KT-64256 Fixed
2023-12-18 11:15:15 +00:00

10 lines
132 B
Kotlin
Vendored

import kotlin.test.*
fun box(): String {
val i: Int? = 1234
requireNotNull(i)
assertEquals(i, 1234)
return "OK"
}