5afab1ac2b
parameters with bounds/supertypes.
4 lines
120 B
Kotlin
Vendored
4 lines
120 B
Kotlin
Vendored
inline fun <reified T> isNullable() = null is T
|
|
|
|
fun box(): String =
|
|
if (isNullable<String?>()) "OK" else "Fail" |