mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-29 19:57:58 +00:00
25
tests/pragmas/t12640.nim
Normal file
25
tests/pragmas/t12640.nim
Normal file
@@ -0,0 +1,25 @@
|
||||
discard """
|
||||
nimout: '''1
|
||||
2
|
||||
3
|
||||
[1, 2, 3]'''
|
||||
|
||||
output: '''1
|
||||
2
|
||||
3
|
||||
[1, 2, 3]'''
|
||||
"""
|
||||
|
||||
|
||||
proc doIt(a: openArray[int]) =
|
||||
echo a
|
||||
|
||||
proc foo() =
|
||||
var bug {.global, compiletime.}: seq[int]
|
||||
bug = @[1, 2 ,3]
|
||||
for i in 0 .. high(bug): echo bug[i]
|
||||
doIt(bug)
|
||||
|
||||
static:
|
||||
foo()
|
||||
foo()
|
||||
Reference in New Issue
Block a user