mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
9 lines
148 B
Kotlin
Vendored
9 lines
148 B
Kotlin
Vendored
@Repeatable
|
|
@java.lang.annotation.Inherited
|
|
annotation class Anno(val name: String)
|
|
|
|
@Anno("Mary")
|
|
open class Base
|
|
|
|
@Anno("Tom")
|
|
class Impl : Base() |