Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
145b5051f737bcd07fb6d5440a722cea8ba3f98c
/
.
/
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"
}