Skip to content

Commit

Permalink
fixes #12945 (#12959)
Browse files Browse the repository at this point in the history
  • Loading branch information
cooldome authored and Araq committed Dec 24, 2019
1 parent 3016290 commit 649bf32
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions compiler/semexprs.nim
Expand Up @@ -1789,12 +1789,12 @@ proc semYieldVarResult(c: PContext, n: PNode, restype: PType) =
let e = skipTypes(t[i], {tyGenericInst, tyAlias, tySink})
if e.kind in {tyVar, tyLent}:
e.flags.incl tfVarIsPtr # bugfix for #4048, #4910, #6892
if n[0].kind in {nkPar, nkTupleConstr}:
n[0][i] = takeImplicitAddr(c, n[0][i], e.kind == tyLent)
elif n[0].kind in {nkHiddenStdConv, nkHiddenSubConv} and
n[0][1].kind in {nkPar, nkTupleConstr}:
var a = n[0][1]
a[i] = takeImplicitAddr(c, a[i], e.kind == tyLent)
let tupleConstr = if n[0].kind in {nkHiddenStdConv, nkHiddenSubConv}: n[0][1] else: n[0]
if tupleConstr.kind in {nkPar, nkTupleConstr}:
if tupleConstr[i].kind == nkExprColonExpr:
tupleConstr[i][1] = takeImplicitAddr(c, tupleConstr[i][1], e.kind == tyLent)
else:
tupleConstr[i] = takeImplicitAddr(c, tupleConstr[i], e.kind == tyLent)
else:
localError(c.config, n[0].info, errXExpected, "tuple constructor")
else: discard
Expand Down
4 changes: 2 additions & 2 deletions tests/iter/tmoditer.nim
Expand Up @@ -4,7 +4,7 @@ discard """

iterator modPairs(a: var array[0..4,string]): tuple[key: int, val: var string] =
for i in 0..a.high:
yield (i, a[i])
yield (key: i, val: a[i])

iterator modItems*[T](a: var array[0..4,T]): var T =
for i in 0..a.high:
Expand Down Expand Up @@ -49,7 +49,7 @@ iterator lentItems[T](a: openarray[T]): lent T =

iterator lentPairs[T](a: array[0..1, T]): tuple[key: int, val: lent T] =
for i in 0..a.high:
yield (i, a[i])
yield (key: i, val: a[i])


let arr1 = [1, 2, 3]
Expand Down

0 comments on commit 649bf32

Please sign in to comment.