summary refs log tree commit diff stats
path: root/tests/destructor/t12037.nim
blob: 8d50262d6fb583641af5c152bad94eea5b3aa78a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
discard """
  cmd: '''nim c --newruntime $file'''
  output: '''
showing original type, length, and contents seq[int] 1 @[42]
copy length and contents 1 @[42]
'''
"""

proc test() =
  var sq1 = @[42]
  echo "showing original type, length, and contents ", sq1.typeof, " ", sq1.len, " ", sq1
  doAssert cast[int](sq1[0].unsafeAddr) != 0
  var sq2 = sq1 # copy of original
  echo "copy length and contents ", sq2.len, " ", sq2
  doAssert cast[int](sq2[0].unsafeAddr) != 0
  doAssert cast[int](sq1[0].unsafeAddr) != 0

test()