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