23 lines
255 B
Plaintext
Vendored
23 lines
255 B
Plaintext
Vendored
open annotation class SomeAnn : Annotation {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@SomeAnn
|
|
class My {
|
|
constructor() /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
init {
|
|
val x: Int = 1
|
|
}
|
|
|
|
}
|