Update compiler tests to use KProperty instead of PropertyMetadata
This commit is contained in:
+3
-1
@@ -1,7 +1,9 @@
|
||||
package test
|
||||
|
||||
import kotlin.reflect.KProperty
|
||||
|
||||
annotation class Anno
|
||||
|
||||
@Anno val x: Int by object {
|
||||
fun getValue(thiz: Any?, data: PropertyMetadata) = null!!
|
||||
fun getValue(thiz: Any?, data: KProperty<*>) = null!!
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user