// FIR_IDENTICAL // !DIAGNOSTICS: -UNUSED_PARAMETER import kotlin.reflect.KProperty0 import kotlin.reflect.KProperty1 fun property(property: KProperty0): Int = 1 fun property(property: KProperty1): String = "" val subject = "" class O { val subject = "" } val someProperty0 = property(::subject) val someProperty1 = property(O::subject)