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