summary refs log tree commit diff stats
path: root/tests/vm/tref.nim
blob: 517a67fb00d642a9e054b4db7b5195f0ce07e319 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
static:
  var
    a: ref string
    b: ref string
  new a

  a[] = "Hello world"
  b = a

  b[5] = 'c'
  doAssert a[] == "Hellocworld"
  doAssert b[] == "Hellocworld"