summary refs log tree commit diff stats
path: root/tests/system/tatomics1.nim
blob: 217fd07fa4c3493cfeb051babedba862a1abcb8b (plain) (blame)
1
2
3
4
5
6
7
8
9
discard """
  targets: "c cpp js"
"""

var x = 10
atomicInc(x)
doAssert x == 11
atomicDec(x)
doAssert x == 10