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

30 lines
415 B
Kotlin
Vendored

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