Add testcase for bug #20305 (#20323)

* add testcase for bug #20305

* Update tcaseobj.nim

Co-authored-by: Clay Sweetser <Varriount@users.noreply.github.com>
This commit is contained in:
Antonis Geralis
2022-09-13 14:10:08 +03:00
committed by GitHub
parent c9a92117f9
commit 7c85b500df

View File

@@ -10,6 +10,7 @@ begin
end
prevented
(ok: true, value: "ok")
@[(kind: P, pChildren: @[])]
myobj destroyed
'''
"""
@@ -244,3 +245,27 @@ block:
doAssert j1.x1 == 2
doAssert j0.x0 == 2
# ------------------------------------
# bug #20305
type
ContentNodeKind = enum
P, Br, Text
ContentNode = object
case kind: ContentNodeKind
of P: pChildren: seq[ContentNode]
of Br: discard
of Text: textStr: string
proc bug20305 =
var x = ContentNode(kind: P, pChildren: @[
ContentNode(kind: P, pChildren: @[ContentNode(kind: Text, textStr: "brrr")])
])
x.pChildren.add ContentNode(kind: Br)
x.pChildren.del(0)
{.cast(uncheckedAssign).}:
x.pChildren[0].kind = P
echo x.pChildren
bug20305()