hylo
hylo copied to clipboard
Incorrect specificity comparison
This seems incorrect: https://github.com/hylo-lang/hylo/blob/91768bdc289bbc5e11f55c56489c0b47129b01f8/Sources/FrontEnd/TypeChecking/TypeChecker.swift#L5155
I suppose the intent was to say that a function <A, B>(A) -> B
is less specific than a function <A, B>(T<A>) -> B
, which isn't the case with that implementation.