summary refs log tree commit diff stats
path: root/tests/system/tnilconcats.nim
blob: ce059b7b0e88abf6c1246c52c479b58966caaf59 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
discard """
  output: '''@[nil, nil, nil, nil, nil, nil, nil, "meh"]'''
  exitcode: "0"
"""

when true:
  var ab: string
  ab &= "more"

  doAssert ab == "more"

  var x: seq[string]

  setLen(x, 7)

  x.add "meh"

  var s: string
  var z = "abc"
  var zz: string
  s &= "foo" & z & zz

  doAssert s == "fooabc"

  echo x