diff options
author | cooldome <cdome@bk.ru> | 2020-01-02 21:58:01 +0000 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2020-01-02 22:58:01 +0100 |
commit | 002d50f1f064cae1dbf49987172f7af5d9e7d35c (patch) | |
tree | ba5fca61c580f00e5eb2ac5a2c3eee4994671988 /tests/destructor | |
parent | 0ff23e696c1e239214dfc2f1d2bb3e8fc6bf9493 (diff) | |
download | Nim-002d50f1f064cae1dbf49987172f7af5d9e7d35c.tar.gz |
Sink to MemMove optimization in injectdestructors (#13002)
Diffstat (limited to 'tests/destructor')
-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 7fc8a61c2..7d6995e4e 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 == 6 +doAssert sink_counter == 3 # bug #11510 proc main = |