22 lines
261 B
Plaintext
Vendored
22 lines
261 B
Plaintext
Vendored
annotation class A : Annotation {
|
|
constructor(klass: KClass<*>) /* primary */
|
|
val klass: KClass<*>
|
|
field = klass
|
|
get
|
|
|
|
}
|
|
|
|
class C {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@A(klass = C::class)
|
|
fun test1() {
|
|
}
|
|
|