package test

public interface RecursiveAnnotation {

    @test.RecursiveAnnotation.B(value = test.RecursiveAnnotation.A(value = "test")) @kotlin.annotation.Retention(value = ...) public final annotation class A : kotlin.Annotation {
        public final val value: kotlin.String
            public final fun `<get-value>`(): kotlin.String
    }

    @test.RecursiveAnnotation.B(value = test.RecursiveAnnotation.A(value = "test")) @kotlin.annotation.Retention(value = ...) public final annotation class B : kotlin.Annotation {
        public final val value: test.RecursiveAnnotation.A
            public final fun `<get-value>`(): test.RecursiveAnnotation.A
    }
}
