13 lines
163 B
Plaintext
Vendored
13 lines
163 B
Plaintext
Vendored
annotation class TestAnn : Annotation {
|
|
constructor(x: Int) /* primary */
|
|
val x: Int
|
|
field = x
|
|
get
|
|
|
|
}
|
|
|
|
@TestAnn(x = 42)
|
|
fun testSimpleFunction() {
|
|
}
|
|
|