Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/propertiesWithoutBackingFields/Class.kt
2013-12-17 20:28:59 +04:00

9 lines
101 B
Kotlin

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