package test

public trait InheritReadOnliness {

    public trait Sub : test.InheritReadOnliness.Super {
        public abstract override /*1*/ fun </*0*/ B : kotlin.(Mutable)List<kotlin.String!>!> foo(/*0*/ a: B!): kotlin.Unit
    }

    public trait Super {
        public abstract fun </*0*/ A : kotlin.(Mutable)List<kotlin.String!>!> foo(/*0*/ a: A!): kotlin.Unit
    }
}
