summary refs log tree commit diff stats
path: root/tests/pragmas/tlocks.nim
blob: ba66a2dca2584d55e038853c7fde16b97e940294 (plain) (blame)
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