9 lines
115 B
Kotlin
Vendored
9 lines
115 B
Kotlin
Vendored
package a
|
|
|
|
@Retention(AnnotationRetention.RUNTIME)
|
|
annotation class Ann
|
|
|
|
interface Tr {
|
|
@Ann
|
|
fun foo() {}
|
|
} |