trlocks.nim 238 B

123456789101112131415
  1. discard """
  2. action: "compile"
  3. # Disallow joining to ensure it can compile in isolation.
  4. # See #15584
  5. joinable: false
  6. cmd: "nim $target --threads:on $options $file"
  7. """
  8. # bugfix #15584
  9. import rlocks
  10. var r: RLock
  11. r.initRLock()