Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
codegen
/
box
/
safeCall
/
genericNull.kt
blob: d8ffc413616facefdf75ca8f4612c25f91a90835 [
file
] [
log
] [
blame
]
fun
<
T
:
Number
?>
foo
(
t
:
T
)
{
t
?.
toInt
()
}
fun box
():
String
{
foo
<
Int
?>(
null
)
return
"OK"
}