19299daacd
Class object properties' backing fields are generated into static fields of the containing class, not into fields of class object. For fields we now store the flag which, if set, tells that this field should be looked for in the containing class
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!!
|
|
}
|