11 lines
185 B
Kotlin
Vendored
11 lines
185 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
|
|
annotation class TestAnn(val x: String)
|
|
|
|
fun foo() {
|
|
@TestAnn("foo/testVal")
|
|
val testVal = "testVal"
|
|
|
|
@TestAnn("foo/testVar")
|
|
var testVar = "testVar"
|
|
} |