7f627ab480
These are mostly mechanical changes.
10 lines
171 B
Kotlin
Vendored
10 lines
171 B
Kotlin
Vendored
class SimpleAnnotated {
|
|
@Suppress("abc")
|
|
fun method() {
|
|
println("Hello, world!")
|
|
}
|
|
|
|
@kotlin.SinceKotlin("1.0")
|
|
val property: String = "Mary"
|
|
}
|