This commit is contained in:
cooldome
2019-05-09 15:45:56 +01:00
committed by Andreas Rumpf
parent 532edc3e9a
commit f4c9eb1774
2 changed files with 6 additions and 0 deletions

View File

@@ -733,6 +733,7 @@ proc p(n: PNode; c: var Con): PNode =
for j in 0..L-3:
let v = it[j]
if v.kind == nkSym:
if sfCompileTime in v.sym.flags: continue
# move the variable declaration to the top of the frame:
c.addTopVar v
# make sure it's destroyed at the end of the proc:

View File

@@ -17,3 +17,8 @@ echo cast[string](@[116'u8, 101, 115, 116])
var a = cast[seq[uint32]]("test1234")
a.setLen(2)
echo a
#issue 11204
var ac {.compileTime.} = @["a", "b"]
const bc = ac.len