blob: 96539395af710f2e5deb7ae20db95260a1350072 [file]
// RUN_PIPELINE_TILL: BACKEND
val Any?.meaning: Int
get() = 42
fun test() {
val f = Any?::meaning
f.get(null)
f.get("")
}
/* GENERATED_FIR_TAGS: callableReference, functionDeclaration, getter, integerLiteral, localProperty, nullableType,
propertyDeclaration, propertyWithExtensionReceiver, stringLiteral */