Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/callableReference/property/extensionPropertyOnNullable.kt
T
Alexander Udalov aa4d6a4ea7 Support :: references to properties in frontend
#KT-1183 In Progress
2014-07-02 01:26:18 +04:00

9 lines
121 B
Kotlin

val Any?.meaning: Int
get() = 42
fun test() {
val f = Any?::meaning
f.get(null) : Int
f.get("") : Int
}