8c4fb0a709
(cherry picked from commit 02a3e6b)
12 lines
142 B
Kotlin
Vendored
12 lines
142 B
Kotlin
Vendored
@java.lang.annotation.Inherited
|
|
annotation class Anno
|
|
|
|
@Anno
|
|
open class Base
|
|
|
|
class Impl : Base()
|
|
|
|
@Anno
|
|
interface Intf
|
|
|
|
class IntfImpl : Intf |