Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/propertySetterParameterWithAnnotations.kt.txt
T
2021-09-23 06:59:33 +00:00

28 lines
299 B
Plaintext
Vendored

open annotation class AnnParam : Annotation {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
var p: Int
field = 0
get
set
class C {
constructor(p: Int) /* primary */ {
super/*Any*/()
/* <init>() */
}
var p: Int
field = p
get
set
}