Files
kotlin-fork/idea/testData/intentions/convertToBlockBody/annotatedExpr.kt.after
T

7 lines
136 B
Plaintext
Vendored

@Target(AnnotationTarget.EXPRESSION)
@Retention(AnnotationRetention.SOURCE)
annotation class ann
fun foo(): Int {
return (@ann 1)
}