mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-18 13:30:33 +00:00
Fix failing test
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user