package test

public interface RecursiveAnnotation2 {

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

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