8 lines
130 B
Kotlin
Vendored
8 lines
130 B
Kotlin
Vendored
package test
|
|
|
|
annotation class Anno
|
|
|
|
@Anno val x: Int by object {
|
|
fun getValue(thiz: Any?, data: PropertyMetadata) = null!!
|
|
}
|