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