summary refs log blame commit diff stats
path: root/tests/misc/tnewderef.nim
blob: 3394dbddf20aeb0ee1e5d5e9daf042d5e3f52a61 (plain) (tree)
1
2
3
4
5
6
7
8
9








              
        
 
discard """
  output: 3

"""

var x: ref int
new(x)
x[] = 3

echo x[]