summary refs log tree commit diff stats
path: root/tests/compiles/t8630.nim
blob: aa2be11cd5e8a838c162f2d8bcf6f8fbf70391ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
discard """
  output: '''
foo
bar
'''
"""

proc test(strings: seq[string]) =
  for s in strings:
    var p3 = unsafeAddr(s)
    echo p3[]

test(@["foo", "bar"])