Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/propertySetterParameterWithAnnotations.fir.kt.txt
T
2020-11-26 00:15:13 +03:00

24 lines
249 B
Plaintext
Vendored

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