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

10 lines
113 B
Kotlin
Vendored

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