12 lines
172 B
Kotlin
Vendored
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)
|
|
}
|
|
} |