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

8 lines
134 B
Plaintext
Vendored

// "Add annotation target" "true"
@Target(AnnotationTarget.EXPRESSION)
annotation class Foo
fun test() {
var v = 0
@Foo v++
}