11 lines
140 B
Kotlin
Vendored
11 lines
140 B
Kotlin
Vendored
package a
|
|
|
|
import java.lang.annotation.*
|
|
|
|
Retention(RetentionPolicy.RUNTIME)
|
|
annotation class Ann
|
|
|
|
interface Tr {
|
|
Ann
|
|
fun foo() {}
|
|
} |