summary refs log tree commit diff stats
path: root/tests/gc/gcleak4.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2019-09-02 10:27:35 +0200
committerAraq <rumpf_a@web.de>2019-09-02 10:27:35 +0200
commite76568764698be7561501c4809e996f3f1608f74 (patch)
tree04700154851f27af457836751a8425882b50e97d /tests/gc/gcleak4.nim
parente6ec88d4c39c458404061198b2a2f6b86c2caeaf (diff)
parentad82e65387f39970b0f12cbcb12d8b382236f3da (diff)
downloadNim-e76568764698be7561501c4809e996f3f1608f74.tar.gz
Merge branch 'devel' into uint-range-checks
Diffstat (limited to 'tests/gc/gcleak4.nim')
-rw-r--r--tests/gc/gcleak4.nim2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/gc/gcleak4.nim b/tests/gc/gcleak4.nim
index e9b17e557..35b8ce112 100644
--- a/tests/gc/gcleak4.nim
+++ b/tests/gc/gcleak4.nim
@@ -27,13 +27,11 @@ method eval(e: ref TPlusExpr): int =
 
 proc newLit(x: int): ref TLiteral =
   new(result)
-  {.watchpoint: result.}
   result.x = x
   result.op1 = $getOccupiedMem()
 
 proc newPlus(a, b: ref TExpr): ref TPlusExpr =
   new(result)
-  {.watchpoint: result.}
   result.a = a
   result.b = b
   result.op2 = $getOccupiedMem()