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