mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-29 18:11:44 +00:00
next steps for closure iterators
This commit is contained in:
21
tests/objects/tobject2.nim
Normal file
21
tests/objects/tobject2.nim
Normal 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)
|
||||
Reference in New Issue
Block a user