Files
kotlin-fork/plugins/uast-kotlin/testData/SimpleAnnotated.kt.as32
T

9 lines
163 B
Plaintext
Vendored

class SimpleAnnotated {
@Suppress("abc")
fun method() {
println("Hello, world!")
}
@SinceKotlin("1.0")
val property: String = "Mary"
}