Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/AnnotationInTrait.A.kt
T
2015-05-12 19:43:17 +02:00

11 lines
140 B
Kotlin
Vendored

package a
import java.lang.annotation.*
Retention(RetentionPolicy.RUNTIME)
annotation class Ann
interface Tr {
Ann
fun foo() {}
}