Files
kotlin-fork/idea/testData/inspectionsLocal/removeEmptyParenthesesFromAnnotationEntry/annotatedExpr.kt.after
T

7 lines
149 B
Plaintext
Vendored

@Target(AnnotationTarget.EXPRESSION)
@Retention(AnnotationRetention.SOURCE)
annotation class MyAnnotation
fun test() {
val x = @MyAnnotation 5
}