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