1 2 3 4 5 6 7 8 9 10 11 12 13
type SomeBase* = ref object of RootObj type SomeDerived* = ref object of SomeBase memberProc*: proc () method testMethod(g: SomeBase) {.base, locks: "unknown".} = discard method testMethod(g: SomeDerived) = if g.memberProc != nil: g.memberProc() # ensure int literals still work proc plain*() {.locks: 0.} = discard