Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/valueParametersWithAnnotations.kt
T
2018-04-09 11:24:37 +03:00

7 lines
176 B
Kotlin
Vendored

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