Files
kotlin-fork/idea/testData/quickfix/addAnnotationTarget/use-site_setparam.kt
T
Toshiaki Kameyama 963e430b42 Make "Add annotation target" available on use-site annotation
So #KT-22861 Fixed
So #KT-22862 Fixed
2018-03-07 15:33:28 +03:00

9 lines
156 B
Kotlin
Vendored

// "Add annotation target" "true"
@Target
annotation class SetParamAnn
class Bar {
<caret>@setparam:SetParamAnn
var foo = 1
set(value) {}
}