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