summary refs log tree commit diff stats
path: root/tests/proc/t8357.nim
blob: 350ebe356d49ef5b13dcc5ab3f0d5dab2dd457b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
discard """
  output: "Hello"
"""

type
  T = ref int

let r = new(string)
r[] = "Hello"
echo r[]