Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/AnnotationInTrait.A.kt
T
2015-09-18 10:14:32 +03:00

9 lines
115 B
Kotlin
Vendored

package a
@Retention(AnnotationRetention.RUNTIME)
annotation class Ann
interface Tr {
@Ann
fun foo() {}
}