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

8 lines
165 B
Kotlin
Vendored

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