2d54b8508 ^
7630cd076 ^
e80465dac ^
1 2
3
4 5 6
7
8
9 10 11 12 13
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