Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
nullCheckOptimization
/
isNullable.kt
blob: 750f01972a0d3e4f78e2645f61570bda98ca9139 [
file
]
inline
fun
<
reified T
>
isNullable
()
=
null
is
T
fun box
():
String
=
if
(
isNullable
<
String
?>())
"OK"
else
"Fail"