Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/propertySetterParameterWithAnnotations.kt.txt
T

30 lines
275 B
Plaintext
Vendored

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