Files
kotlin/idea/testData/quickfix/addAnnotationTarget/expression.kt

7 lines
104 B
Kotlin
Vendored

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