Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/AnnotationInTrait.A.kt
T
2014-12-23 15:18:46 +03:00

11 lines
136 B
Kotlin

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