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