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