package test

public trait UseParameterInUpperBoundWithKotlinSignature {

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

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