Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/options/setterParam.kt
T
2018-05-04 18:04:57 +03:00

8 lines
199 B
Kotlin
Vendored

// KT-9145
@Target(AnnotationTarget.CLASS)
annotation class Ann
var x: Int
get() = 1
set(<!WRONG_ANNOTATION_TARGET!>@Ann<!> <!WRONG_MODIFIER_TARGET!>private<!> <!UNUSED_PARAMETER!>x<!>) { }