This commit is contained in:
Andreas Rumpf
2017-02-05 17:14:49 +01:00
parent b15e8124fe
commit 072d79511f
2 changed files with 18 additions and 1 deletions

View File

@@ -1210,7 +1210,7 @@ proc genSeqConstr(p: BProc, t: PNode, d: var TLoc) =
proc genArrToSeq(p: BProc, t: PNode, d: var TLoc) =
var elem, a, arr: TLoc
if t.kind == nkBracket:
if t.sons[1].kind == nkBracket:
t.sons[1].typ = t.typ
genSeqConstr(p, t.sons[1], d)
return

View File

@@ -0,0 +1,17 @@
discard """
output: '''@[1, 2, 3, 4]'''
"""
# bug #5314
import asyncdispatch
proc bar(): Future[int] {.async.} =
await sleepAsync(500)
result = 3
proc foo(): Future[seq[int]] {.async.} =
await sleepAsync(500)
result = @[1, 2, await bar(), 4] # <--- The bug is here
echo waitFor foo()