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