package test

@kotlin.annotation.Repeatable @kotlin.annotation.Retention(value = AnnotationRetention.RUNTIME) public final annotation class Ann : kotlin.Annotation {
    /*primary*/ public constructor Ann(/*0*/ x: kotlin.Int)
    public final val x: kotlin.Int
        public final fun `<get-x>`(): kotlin.Int
}

@test.Ann(x = 1) @test.Ann(x = 2) public final class Some {
    /*primary*/ public constructor Some()
}
