Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/annotations/classMembers/Getter.kt
T

10 lines
133 B
Kotlin
Vendored

// PLATFORM_DEPENDANT_METADATA
package test
annotation class Anno
class Class {
val property: Int
@[Anno] get() = 42
}