package test

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