I am asking because I can do that: ``` thi...
# getting-started
a
I am asking because I can do that:
Copy code
this.javaClass.kotlin.memberProperties.find{ it.name == "test" }!!.get(this)
but I cannot do that:
Copy code
this::class.memberProperties.find{ it.name == "test" }!!.get(this)
        //ErrorKotlin: Out-projected type 'KProperty1<out T, Any?>' prohibits the use of 'public abstract fun get(receiver: T): R defined in kotlin.reflect.KProperty1'
And I want to understand it
m
arturro: What is
this
here?
a
Any class, this is just example, I use it for data class