260c549cd7
and `KotlinNullabilityUAnnotation` now is created for every `AbstractKotlinUVariable`
9 lines
163 B
Kotlin
Vendored
9 lines
163 B
Kotlin
Vendored
class SimpleAnnotated {
|
|
@Suppress("abc")
|
|
fun method() {
|
|
println("Hello, world!")
|
|
}
|
|
|
|
@SinceKotlin("1.0")
|
|
val property: String = "Mary"
|
|
} |