Files
kotlin-fork/plugins/uast-kotlin/testData/SimpleAnnotated.kt
T
Jinseong Jeon 7f627ab480 FIR UAST: track all legacy test data since facade class is converted
These are mostly mechanical changes.
2021-05-06 20:19:29 +02:00

10 lines
171 B
Kotlin
Vendored

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