Fix failing test

This commit is contained in:
cooldome
2018-06-26 23:50:06 +01:00
parent 34170db963
commit c20d1ac1c0

View File

@@ -1693,7 +1693,7 @@ proc isException*(t: PType): bool =
assert(t != nil)
var base = t
while base != nil and base.kind in {tyObject, tyGenericInst, tyAlias}:
while base != nil and base.kind in {tyRef, tyObject, tyGenericInst, tyAlias}:
if base.sym != nil and base.sym.magic == mException:
return true
if base.len == 0: break