Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/variablesWithAnnotations.fir.kt.txt
T
2020-11-26 00:15:13 +03:00

13 lines
203 B
Plaintext
Vendored

annotation class TestAnn : Annotation {
constructor(x: String) /* primary */
val x: String
field = x
get
}
fun foo() {
val testVal: String = "testVal"
var testVar: String = "testVar"
}