package test

public interface ErrorTypes {

    public interface Sub : test.ErrorTypes.Super {
        public abstract override /*1*/ fun errorTypeInParameter(/*0*/ list: kotlin.collections.(Mutable)List<kotlin.Array<(out) T!>!>!): kotlin.Unit
        public abstract override /*1*/ fun returnErrorType(): T!
    }

    public interface Super {
        public abstract fun errorTypeInParameter(/*0*/ list: kotlin.collections.(Mutable)List<kotlin.Array<(out) T!>!>!): kotlin.Unit
        public abstract fun returnErrorType(): T!
    }
}
