Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/annotations/packageMembers/DelegatedProperty.kt
T

10 lines
159 B
Kotlin
Vendored

package test
import kotlin.reflect.KProperty
annotation class Anno
@Anno val x: Int by object {
fun getValue(thiz: Any?, data: KProperty<*>) = null!!
}