mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
13 lines
167 B
Nim
13 lines
167 B
Nim
type
|
|
TObj* = object {.inheritable.}
|
|
|
|
var myObj* : ref TObj
|
|
|
|
method test123(a : ref TObj) {.base.} =
|
|
echo("Hi base!")
|
|
|
|
proc testMyObj*() =
|
|
test123(myObj)
|
|
|
|
|