Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
75d8a5bca606366254123abd80c77147a3d426a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
exclExcl
/
genericNull.kt
blob: 567c935e693d70756435ee4eb9e66c68614d3f6c [
file
]
fun
<
T
>
foo
(
t
:
T
)
{
t
!!
}
fun box
():
String
{
try
{
foo
<
Any
?>(
null
)
}
catch
(
e
:
Exception
)
{
return
"OK"
}
return
"Fail"
}