Files
kotlin-fork/idea/testData/quickfix/addAnnotationTarget/expression.kt
T

8 lines
143 B
Kotlin
Vendored

// "Add annotation target" "true"
@Retention(AnnotationRetention.SOURCE)
annotation class Foo
fun test() {
var v = 0
<caret>@Foo v++
}