Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
260e8dfd39d86c4c5db834113ee010d647f3995e
/
.
/
compiler
/
testData
/
codegen
/
box
/
casts
/
asToNothing.kt
blob: 52bf6bb5f60e4035bad9c25043edb5f0750b961c [
file
]
fun box
():
String
{
try
{
null
as
Nothing
}
catch
(
x
:
ClassCastException
)
{
return
"OK"
}
catch
(
x
:
NullPointerException
)
{
return
"OK"
}
return
"Fail"
}