summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authornarimiran <narimiran@disroot.org>2019-11-24 09:50:52 +0100
committernarimiran <narimiran@disroot.org>2019-11-24 09:50:52 +0100
commit015bec625461826c3891110182b982c5dbb3208a (patch)
tree086b8566b5c7af2ba509c2b24c8776c4e1482f5e /tests
parent8b2f8f5430e8c328efe5bce94e397f15e3c501af (diff)
downloadNim-015bec625461826c3891110182b982c5dbb3208a.tar.gz
Revert "ARC: another critical bugfix; temporary tuples we introduce for tuple unpackaging are not owning the data"
This reverts commit 8b2f8f5430e8c328efe5bce94e397f15e3c501af.
Diffstat (limited to 'tests')
-rw-r--r--tests/destructor/tmisc_destructors.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/destructor/tmisc_destructors.nim b/tests/destructor/tmisc_destructors.nim
index fdcea074b..354938392 100644
--- a/tests/destructor/tmisc_destructors.nim
+++ b/tests/destructor/tmisc_destructors.nim
@@ -28,7 +28,7 @@ proc test(): auto =
 var (a, b, _) = test()
 
 doAssert assign_counter == 0
-doAssert sink_counter == 9 # XXX this is still silly and needs to be investigated
+doAssert sink_counter == 12 # + 3 because of the conservative tuple unpacking transformation
 
 # bug #11510
 proc main =