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

10 lines
112 B
Kotlin

package test
annotation class A
class Class {
var foo: Int
get() = 42
set([A] value) {}
}