Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
casts
/
castGenericNull.kt
blob: 10f44765a889132c0ea14f21de1cfe453884e754 [
file
]
fun
<
T
>
castToString
(
t
:
T
)
{
t
as
String
}
fun box
():
String
{
try
{
castToString
<
Any
?>(
null
)
}
catch
(
e
:
Exception
)
{
return
"OK"
}
return
"Fail"
}