Files
Nim/tests/method/mmultim3.nim
2014-01-13 02:10:03 +01:00

13 lines
158 B
Nim

type
TObj* = object {.inheritable.}
var myObj* : ref TObj
method test123(a : ref TObj) =
echo("Hi base!")
proc testMyObj*() =
test123(myObj)