19 lines
210 B
Plaintext
Vendored
19 lines
210 B
Plaintext
Vendored
annotation class Ann : Annotation {
|
|
constructor() /* primary */
|
|
|
|
}
|
|
|
|
class Test {
|
|
constructor(@Ann x: Int) /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
val x: Int
|
|
field = x
|
|
get
|
|
|
|
}
|
|
|