blob: 8060c88cff415a124fb1eb3c9f09e9f0865c90e0 [file]
// "Add annotation target" "true"
@Target(AnnotationTarget.EXPRESSION)
@Retention(AnnotationRetention.SOURCE)
annotation class Foo
fun test() {
var v = 0
@Foo v++
}