Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/options/assignment.fir.kt
T

11 lines
188 B
Kotlin
Vendored

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