package test

public interface TwoSuperclasses {

    public interface Sub : test.TwoSuperclasses.Super1, test.TwoSuperclasses.Super2 {
        public abstract override /*2*/ fun </*0*/ C : kotlin.CharSequence!> foo(/*0*/ p0: C!): kotlin.Unit
    }

    public interface Super1 {
        public abstract fun </*0*/ A : kotlin.CharSequence!> foo(/*0*/ p0: A!): kotlin.Unit
    }

    public interface Super2 {
        public abstract fun </*0*/ B : kotlin.CharSequence!> foo(/*0*/ p0: B!): kotlin.Unit
    }
}
