summary refs log tree commit diff stats
path: root/tests/compile/trectuple.nim
blob: 7c43ec5ba6b77c34382c7478a31258ea176521da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
type
    PNode = ref TNode
    TNode = tuple # comment
      self: PNode # comment
      a, b: int # comment

var node: PNode
new(node)
node.self = node