fix sighashes for generic ref (#20723)

the `hashType` issue in #12229 was never really fixed - it just stopped
being called in that context

(cherry picked from commit 58f79e7c3e)
This commit is contained in:
Jacek Sieka
2022-11-01 19:01:06 +01:00
committed by narimiran
parent d5be917994
commit 10ca10eb83

View File

@@ -182,7 +182,8 @@ proc hashType(c: var MD5Context, t: PType; flags: set[ConsiderFlag]; conf: Confi
hashType c, t[0], flags, conf
of tyRef, tyPtr, tyGenericBody, tyVar:
c &= char(t.kind)
c.hashType t.lastSon, flags, conf
if t.sons.len > 0:
c.hashType t.lastSon, flags, conf
if tfVarIsPtr in t.flags: c &= ".varisptr"
of tyFromExpr:
c &= char(t.kind)