mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
12 lines
206 B
Kotlin
Vendored
12 lines
206 B
Kotlin
Vendored
package test
|
|
|
|
import kotlin.reflect.KProperty
|
|
|
|
annotation class Anno
|
|
|
|
class Class {
|
|
@Anno val x: Int by object {
|
|
operator fun getValue(thiz: Class, data: KProperty<*>): Nothing = null!!
|
|
}
|
|
}
|