blob: 972356cd0222fef87c2d2f923e34030c64c5c041 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
discard """
action: "compile"
"""
proc test(a: openArray[string]): proc =
result = proc =
for i in a:
discard i
const a = ["t1", "t2"]
discard test(a)
|