Files
kotlin/compiler/testData/codegen/box/callableReference/bound/nullReceiver.kt
2019-11-19 11:00:09 +03:00

5 lines
99 B
Kotlin
Vendored

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