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

8 lines
193 B
Kotlin
Vendored

// FIR_IDENTICAL
annotation class TestAnn(val x: String)
fun testFun(@TestAnn("testFun.x") x: Int) {}
class TestClassConstructor1(@TestAnn("TestClassConstructor1.x")x: Int) {
val xx = x
}