8 lines
115 B
Kotlin
Vendored
8 lines
115 B
Kotlin
Vendored
// "Add annotation target" "true"
|
|
@Retention
|
|
annotation class Foo
|
|
|
|
fun test() {
|
|
var v = 0
|
|
<caret>@Foo v++
|
|
} |