diff options
Diffstat (limited to 'compiler/vmgen.nim')
-rw-r--r-- | compiler/vmgen.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/vmgen.nim b/compiler/vmgen.nim index ed8f3f338..69249abfe 100644 --- a/compiler/vmgen.nim +++ b/compiler/vmgen.nim @@ -1482,7 +1482,7 @@ proc getNullValue(typ: PType, info: TLineInfo): PNode = getNullValueAux(skipTypes(base, skipPtrs).n, result) base = base.sons[0] getNullValueAux(t.n, result) - of tyArray, tyArrayConstr: + of tyArray: result = newNodeIT(nkBracket, info, t) for i in countup(0, int(lengthOrd(t)) - 1): addSon(result, getNullValue(elemType(t), info)) |