9539212180
So #KT-22860 Fixed
14 lines
238 B
Kotlin
Vendored
14 lines
238 B
Kotlin
Vendored
// "Add annotation target" "true"
|
|
// ERROR: This annotation is not applicable to target 'expression'
|
|
|
|
package test
|
|
|
|
annotation class AnnTarget
|
|
|
|
fun println(v: Int) {}
|
|
|
|
fun apply() {
|
|
var v = 0
|
|
<caret>@AnnTarget v++
|
|
println(v)
|
|
} |