Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/propertiesWithoutBackingFields/Class.kt
2015-06-12 09:23:31 +03:00

9 lines
102 B
Kotlin
Vendored

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