17 lines
212 B
Plaintext
Vendored
17 lines
212 B
Plaintext
Vendored
open annotation class TestAnn : Annotation {
|
|
constructor(x: Int) /* primary */ {
|
|
super/*Any*/()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
val x: Int
|
|
field = x
|
|
get
|
|
|
|
}
|
|
|
|
@TestAnn(x = 42)
|
|
fun testSimpleFunction() {
|
|
}
|