mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
10 lines
154 B
Kotlin
Vendored
10 lines
154 B
Kotlin
Vendored
package test
|
|
|
|
annotation class Anno
|
|
|
|
class Class {
|
|
@Anno val x: Int by object {
|
|
fun get(thiz: Class, data: PropertyMetadata) = null!!
|
|
}
|
|
}
|