Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
compiler
/
testData
/
codegen
/
box
/
contracts
/
nonNullSmartCast.kt
blob: 42fdd292aa8b7fe55cc62df9e26770828a0092ab [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
fun box
():
String
{
val i
:
Int
?
=
1234
requireNotNull
(
i
)
assertEquals
(
i
,
1234
)
return
"OK"
}