patch 8.2.2101: Vim9: memory leak when literal dict has an error

Problem:    Vim9: memory leak when literal dict has an error and when an
            expression is not complete.
Solution:   Clear the typval and the growarray.
diff --git a/src/dict.c b/src/dict.c
index 311b003..5581a55 100644
--- a/src/dict.c
+++ b/src/dict.c
@@ -929,6 +929,7 @@
 		if (**arg != ']')
 		{
 		    emsg(_(e_missing_matching_bracket_after_dict_key));
+		    clear_tv(&tvkey);
 		    return FAIL;
 		}
 		++*arg;