Files
kotlin-fork/idea/testData/intentions/convertReferenceToLambda/kproperty.kt
T

12 lines
172 B
Kotlin
Vendored

// IS_APPLICABLE: false
import kotlin.reflect.KProperty
fun <P : Any> p(p: KProperty<P>) {}
class B {
val s: String = ""
init {
p(<caret>this::s)
}
}