mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-07 13:33:22 +00:00
14 lines
211 B
Nim
14 lines
211 B
Nim
|
|
type
|
|
TBaseClass* = object of RootObj
|
|
|
|
proc newBaseClass*: ref TBaseClass =
|
|
new result
|
|
|
|
method echoType*(x: ref TBaseClass) {.base.} =
|
|
echo "base class"
|
|
|
|
proc echoAlias*(x: ref TBaseClass) =
|
|
echoType x
|
|
|