Files
kotlin/idea/testData/quickfix/addAnnotationTarget/hasAnnotationTarget1.kt.after

8 lines
181 B
Plaintext
Vendored

// "Add annotation target" "true"
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.TYPE)
annotation class Foo
class Test {
fun foo(): @Foo Int = 1
}