Files
Nim/tests_disabled/ic/ic_disabled/mbaseobj.nim
2026-01-09 13:10:04 +01:00

8 lines
104 B
Nim

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