diff options
Diffstat (limited to 'compiler/sighashes.nim')
-rw-r--r-- | compiler/sighashes.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/sighashes.nim b/compiler/sighashes.nim index bb34ff3d2..7b76fe010 100644 --- a/compiler/sighashes.nim +++ b/compiler/sighashes.nim @@ -159,7 +159,7 @@ proc hashType(c: var MD5Context, t: PType; flags: set[ConsiderFlag]) = c.hashSym(t.sym) else: lowlevel(t.id) - of tyRef, tyPtr, tyGenericBody: + of tyRef, tyPtr, tyGenericBody, tyAlias: c.hashType t.lastSon, flags of tyUserTypeClass: if t.sym != nil and t.sym.owner != nil: |