Files
kotlin/compiler/testData/diagnostics/tests/annotations/options/assignment.kt

9 lines
148 B
Kotlin
Vendored

@Target(AnnotationTarget.EXPRESSION)
annotation class ExprAnn
fun foo(): Int {
var a: Int
@ExprAnn a = 1
@ExprAnn a += 1
return a
}