diff options
author | narimiran <narimiran@disroot.org> | 2019-11-24 09:50:52 +0100 |
---|---|---|
committer | narimiran <narimiran@disroot.org> | 2019-11-24 09:50:52 +0100 |
commit | 015bec625461826c3891110182b982c5dbb3208a (patch) | |
tree | 086b8566b5c7af2ba509c2b24c8776c4e1482f5e /tests | |
parent | 8b2f8f5430e8c328efe5bce94e397f15e3c501af (diff) | |
download | Nim-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.nim | 2 |
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 = |