Files
kotlin-fork/plugins/annotation-collector/testData/collectToFile/inheritedSimple/inheritedSimple.kt
T
2016-05-11 20:41:48 +03:00

11 lines
119 B
Kotlin
Vendored

package org.test
import java.lang.annotation.Inherited
@Inherited
annotation class Ann
@Ann
interface A
class B : A