Files
kotlin/compiler/testData/codegen/box/callableReference/bound/nullReceiver.kt
2016-11-28 16:33:58 +03:00

4 lines
69 B
Kotlin
Vendored

val String?.ok: String
get() = "OK"
fun box() = (null::ok).get()