package test

public trait TwoBounds : java.lang.Object {
    
    public trait Sub : test.TwoBounds.Super {
        public abstract override /*1*/ fun </*0*/ B : jet.CharSequence> foo(/*0*/ p0: B): jet.Unit where B : java.lang.Cloneable
    }
    
    public trait Super : java.lang.Object {
        public abstract fun </*0*/ A : jet.CharSequence> foo(/*0*/ p0: A): jet.Unit where A : java.lang.Cloneable
    }
}
