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

29 lines
414 B
Kotlin
Vendored

open annotation class TestAnn : Annotation {
constructor(x: String) /* primary */ {
super/*Any*/()
/* <init>() */
}
val x: String
field = x
get
}
fun testFun(@TestAnn(x = "testFun.x") x: Int) {
}
class TestClassConstructor1 {
constructor(@TestAnn(x = "TestClassConstructor1.x") x: Int) /* primary */ {
super/*Any*/()
/* <init>() */
}
val xx: Int
field = x
get
}