Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
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"
}