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

7 lines
104 B
Kotlin
Vendored

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