7dbd5cd57f
KT-64226
12 lines
264 B
Kotlin
Vendored
12 lines
264 B
Kotlin
Vendored
@Target(AnnotationTarget.VALUE_PARAMETER)
|
|
@MustBeDocumented
|
|
annotation class ImportantAnnotation
|
|
|
|
@MustBeDocumented
|
|
annotation class AnotherImportantAnnotation
|
|
|
|
@AnotherImportantAnnotation
|
|
class Bar {
|
|
fun @receiver:ImportantAnnotation Any.foo() = toString()
|
|
}
|