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

13 lines
240 B
Kotlin
Vendored

@Target(AnnotationTarget.FUNCTION)
annotation class FunAnn
@Target(AnnotationTarget.EXPRESSION)
@Retention(AnnotationRetention.SOURCE)
annotation class ExprAnn
fun foo(): Int {
var x = 5
@FunAnn ++x
@ExprAnn ++x
return x
}