12 lines
180 B
Kotlin
Vendored
12 lines
180 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
|
|
import kotlin.reflect.KFunction
|
|
|
|
fun <P : Any> p(p: KFunction<P>) {}
|
|
|
|
class B {
|
|
fun getS(): String = ""
|
|
init {
|
|
p(<caret>this::getS)
|
|
}
|
|
} |