11 lines
119 B
Kotlin
Vendored
11 lines
119 B
Kotlin
Vendored
package org.test
|
|
|
|
import java.lang.annotation.Inherited
|
|
|
|
@Inherited
|
|
annotation class Ann
|
|
|
|
@Ann
|
|
interface A
|
|
|
|
class B : A |