7 lines
176 B
Kotlin
Vendored
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
|
|
} |