# HG changeset patch # User Bram Moolenaar # Date 1644070502 -3600 # Node ID 2397b18d6f949f7854fcc6330ed6f2ca7aed9af8 # Parent 5bf66bc1e368fb8df2695723853b24068b8e53bb patch 8.2.4301: Vim9: type error for copy of dict Commit: https://github.com/vim/vim/commit/e0c2b2ceaa8ca2d0f412f17f4cf14fb4f7a3296f Author: Bram Moolenaar Date: Sat Feb 5 14:05:51 2022 +0000 patch 8.2.4301: Vim9: type error for copy of dict Problem: Vim9: type error for copy of dict. Solution: Do not use dict but no type. (closes https://github.com/vim/vim/issues/9696) diff --git a/src/dict.c b/src/dict.c --- a/src/dict.c +++ b/src/dict.c @@ -306,7 +306,10 @@ dict_copy(dict_T *orig, int deep, int to orig->dv_copyID = copyID; orig->dv_copydict = copy; } - copy->dv_type = alloc_type(top || deep ? &t_dict_any : orig->dv_type); + if (orig->dv_type == NULL || top || deep) + copy->dv_type = NULL; + else + copy->dv_type = alloc_type(orig->dv_type); todo = (int)orig->dv_hashtab.ht_used; for (hi = orig->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi) diff --git a/src/testdir/test_vim9_builtin.vim b/src/testdir/test_vim9_builtin.vim --- a/src/testdir/test_vim9_builtin.vim +++ b/src/testdir/test_vim9_builtin.vim @@ -745,6 +745,9 @@ def Test_copy_return_type() var ndd: dict> = {a: {x: 1, y: 2}} assert_equal({x: 1, y: 2, z: 'x'}, ndd->deepcopy()['a']->extend({z: 'x'})) + + var ldn: list> = [{a: 0}]->deepcopy() + assert_equal([{a: 0}], ldn) enddef def Test_count() diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4301, +/**/ 4300, /**/ 4299,