summary refs log blame commit diff stats
path: root/tests/ic/mbaseobj.nim
blob: 0f4e4a90d3f379c0a581110dbc172c8f3270834c (plain) (tree)
1
2
3
4
5
6
7






                               
type
  Base* = ref object of RootObj
    s*: string

method m*(b: Base) {.base.} =
  echo "Base ", b.s