mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
8 lines
124 B
Kotlin
8 lines
124 B
Kotlin
package test
|
|
|
|
annotation class Anno
|
|
|
|
Anno val x: Int by object {
|
|
fun get(thiz: Any?, data: PropertyMetadata) = null!!
|
|
}
|