Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
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"
)