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

10 lines
119 B
Kotlin
Vendored

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