Files
Nim/tests/ic/mbaseobj.nim
Andreas Rumpf 13b958eb45 IC: added basic test case for methods (#17679)
* IC: added basic test case for methods

* IC: better methods test
2021-04-09 06:59:25 +02:00

8 lines
104 B
Nim

type
Base* = ref object of RootObj
s*: string
method m*(b: Base) {.base.} =
echo "Base ", b.s