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

9 lines
167 B
Kotlin
Vendored

annotation class TestAnn(val x: String)
fun foo() {
@TestAnn("foo/testVal")
val testVal = "testVal"
@TestAnn("foo/testVar")
var testVar = "testVar"
}