summary refs log tree commit diff stats
path: root/tests/vm/twrong_concat.nim
blob: 59a10bdb969f958efd4b6feb6f03d958bf0daa39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# bug #3804

#import sequtils

type AnObj = ref object
  field: string

#proc aBug(objs: seq[AnObj]) {.compileTime.} =
#  discard objs.mapIt(it.field & " bug")

proc sameBug(objs: seq[AnObj]) {.compileTime.} =
  var strSeq = newSeq[string](objs.len)
  strSeq[0] = objs[0].field & " bug"

static:
  var objs: seq[AnObj] = @[]
  objs.add(AnObj(field: "hello"))

  sameBug(objs)
  # sameBug(objs)
  echo objs[0].field
  doAssert(objs[0].field == "hello") # fails, because (objs[0].field == "hello bug") - mutated!