(cherry picked from commit 135fdde6a9)
This commit is contained in:
Andreas Rumpf
2019-06-26 23:41:20 +02:00
committed by narimiran
parent d206e881e9
commit 843ae0073b
2 changed files with 12 additions and 2 deletions

View File

@@ -758,7 +758,8 @@ proc liftCapturedVars(n: PNode; owner: PSym; d: DetectionPass;
# transform, let's not touch the LHS in order to make the lifting pass
# correct when `result` is lifted
n[0].sons[1] = liftCapturedVars(n[0].sons[1], owner, d, c)
else: assert n[0].kind == nkEmpty
else:
n.sons[0] = liftCapturedVars(n[0], owner, d, c)
else:
if owner.isIterator:
if nfLL in n.flags:

View File

@@ -1,5 +1,6 @@
discard """
output: '''true'''
output: '''true
(999, 0)'''
"""
@@ -52,3 +53,11 @@ block tissue1911:
proc baz() : int = helper()
return (bar, baz)
# bug #11523
proc foo(): proc =
let a = 999
return proc(): (int, int) =
return (a, 0)
echo foo()()