android13/external/dokka/core/testdata/functions/annotatedFunctionWithAnnota...

8 lines
167 B
Kotlin

@Target(AnnotationTarget.VALUE_PARAMETER)
@Retention(AnnotationRetention.SOURCE)
@MustBeDocumented
public annotation class Fancy(val size: Int)
@Fancy(1) fun f() {}