diff options
Diffstat (limited to 'compiler/astalgo.nim')
-rwxr-xr-x | compiler/astalgo.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/astalgo.nim b/compiler/astalgo.nim index 7303e3ff0..7128102a8 100755 --- a/compiler/astalgo.nim +++ b/compiler/astalgo.nim @@ -583,6 +583,7 @@ proc StrTableIncl*(t: var TStrTable, n: PSym): bool = # returns true if n is already in the string table: # It is essential that `n` is written nevertheless! # This way the newest redefinition is picked by the semantic analyses! + assert n.name != nil var h: THash = n.name.h and high(t.data) while true: var it = t.data[h] |