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