Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
nothingValue
/
inNestedCall.kt
blob: 52985d9c57605472f43bb38ae1386a85e0afcd8a [
file
]
fun nestedNothing
(
s
:
String
)
=
""
+
if
(
s
==
"OK"
)
s
else
barf
()
fun barf
():
Nothing
=
throw
NullPointerException
()
fun box
()
=
nestedNothing
(
"OK"
)