Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/classLiteralInAnnotation.kt.txt
T
2021-09-23 06:59:33 +00:00

26 lines
310 B
Plaintext
Vendored

open annotation class A : Annotation {
constructor(klass: KClass<*>) /* primary */ {
super/*Any*/()
/* <init>() */
}
val klass: KClass<*>
field = klass
get
}
class C {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
@A(klass = C::class)
fun test1() {
}