Files
kotlin-fork/plugins/uast-kotlin/testData/SimpleAnnotated.kt
T
Vyacheslav Gerasimov bc403ce744 Switch to 181 platform
2018-04-27 18:25:17 +03:00

9 lines
170 B
Kotlin
Vendored

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