added another test case

This commit is contained in:
Araq
2011-11-12 01:02:06 +01:00
parent 2bd14f4ba8
commit 8fc15ca0d5
3 changed files with 13 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
type Node = tuple[left: ref Node]
proc traverse(root: ref Node) =
if root.left != nil: traverse(root.left)
type A = tuple[B: ptr A]
proc C(D: ptr A) = C(D.B)