next steps for closure iterators

This commit is contained in:
Araq
2014-01-22 17:32:38 +01:00
parent 85a5bfe605
commit 37229df7fc
28 changed files with 164 additions and 71 deletions

View File

@@ -0,0 +1,21 @@
# Tests the object implementation
type
TPoint2d {.inheritable.} = object
x, y: int
TPoint3d = object of TPoint2d
z: int # added a field
proc getPoint( p: var TPoint2d) =
{.breakpoint.}
writeln(stdout, p.x)
var
p: TPoint3d
TPoint2d(p).x = 34
p.y = 98
p.z = 343
getPoint(p)