// FIR_IDENTICAL // !DIAGNOSTICS: -UNUSED_PARAMETER // Issue: KT-25433 import kotlin.reflect.* fun hidden(nameProp: KProperty1, value: R) {} fun hiddenFun(nameFunc: KFunction1, value: R) {} class App(val nullable: String?) { fun nullableFun(): String? = null } fun test() { hidden(App::nullable, "foo") hiddenFun(App::nullableFun, "foo") }