blob: 8e91564b89859c59d3a93496228a8be464ae8cb8 [file]
val Any?.meaning: Int
get() = 42
fun test() {
val f = Any?::meaning
f.get(null)
f.get("")
}