Files
kotlin/compiler/testData/codegen/box/callableReference/bound/nullReceiver.kt
2018-06-28 12:26:41 +02:00

5 lines
95 B
Kotlin
Vendored

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