87d4e35388
Annotations on properties without backing fields are stored on a special synthesized method inside the class
8 lines
87 B
Kotlin
8 lines
87 B
Kotlin
package test
|
|
|
|
annotation class Anno
|
|
|
|
class Class {
|
|
[Anno] var property: Int = 42
|
|
}
|