8c4fb0a709
(cherry picked from commit 02a3e6b)
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() |