Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/propertySetterParameterWithAnnotations.kt.txt
T
2024-02-16 10:19:38 +00:00

29 lines
300 B
Kotlin
Vendored

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