Unification should check for spine length equality?
atennapel opened this issue · 2 comments
atennapel commented
Shouldn't the spines be the same length here:
elaboration-zoo/03-holes/Main.hs
Line 396 in d89688a
AndrasKovacs commented
The two sides in unification always have the same type, so if the heads are equal, then the spines cannot be of different length (because then the sides would have different type).
atennapel commented
Right, that makes sense.