Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
534b00eff856e0e4dcaf105df9a043d9b1263ff7
/
.
/
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"
}