Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/variablesWithAnnotations.kt
T
2021-06-09 15:42:38 +03:00

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"
}