Files
Nim/tests/arc/t19435.nim
flywind efaa6777a4 fix #19435; don't create TypeBoundOps for tyOpenArray, tyVarargs [backport: 1.6] (#19723)
* fix #19435; openArray wronyly registers typebounds

* add testcase

* don't create TypeBoundOps for tyOpenArray, tyVarargs
2022-04-25 11:07:55 +02:00

29 lines
464 B
Nim

discard """
matrix: "--gc:arc"
"""
# bug #19435
{.experimental: "views".}
type
Bar = object
placeholder: int
Foo = object
placeholder: int
c: seq[Bar] # remove this line to make things right
func children*(s: var seq[Foo]): openArray[Foo] =
s.toOpenArray(0, s.len-1)
proc test =
var foos = @[Foo(), Foo()]
assert foos.children.len == 2
var flag = true
for a in foos.children:
flag = false
if flag:
doAssert false
test()