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

8 lines
115 B
Kotlin
Vendored

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