package test

public interface TwoTypeParameters {

    public interface Sub : test.TwoTypeParameters.Super {
        public abstract override /*1*/ fun </*0*/ B : kotlin.CharSequence, /*1*/ A : kotlin.Cloneable> foo(/*0*/ B, /*1*/ A): kotlin.Unit
    }

    public interface Super {
        public abstract fun </*0*/ A : kotlin.CharSequence, /*1*/ B : kotlin.Cloneable> foo(/*0*/ A, /*1*/ B): kotlin.Unit
    }
}
