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