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