mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 00:21:35 +00:00
10 lines
130 B
Kotlin
Vendored
10 lines
130 B
Kotlin
Vendored
annotation class Anno
|
|
|
|
class C {
|
|
@Anno
|
|
internal val property: Int get() = 0
|
|
}
|
|
|
|
@Anno
|
|
internal val property: Int get() = 0
|