mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
* fixes #19795; remove parse pipeline * isScript * fixes nimscriptapi * don't touch reorder * check script * fixes tests * it seems implicit imports of system cause troubles * access the first child of `nkStmtList` * ignore comments * minor messages * perhaps increases hloLoopDetector * the module is a stmtList, which changes the errors * fixes nimdoc * fixes tlinter * fixes nim secret tests * fixes arc_misc * fixes nim secret tests again * safe; fixes one more test * GlobalError is the root cause too * fixes parsing errors * put emit types to the cfsForwardTypes section * fixes #11852; `{.push checks:off}` now works in procs * disable navigator * fixes nimdoc * add tests for JS * fixes nimsuggest
19 lines
345 B
Nim
19 lines
345 B
Nim
discard """
|
|
matrix: "--mm:arc"
|
|
"""
|
|
|
|
# bug #19795
|
|
# bug #21085
|
|
|
|
type Vector = seq[int]
|
|
|
|
var vect: Vector = newSeq[int](5)
|
|
doAssert vect == @[0, 0, 0, 0, 0]
|
|
|
|
# Needed to get the problem. Could also use "var".
|
|
let vectCopy = vect
|
|
|
|
# Then some procedure definition is needed to get the problem.
|
|
proc p(): int = 3
|
|
|
|
doAssert vect == @[0, 0, 0, 0, 0] |