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

19 lines
201 B
Kotlin
Vendored

package org.test
import java.lang.annotation.Inherited
@Inherited
annotation class Ann1
@Inherited
annotation class Ann2
@Ann1
interface A
@Ann2
open class B : A
open class C : B()
class D : C()