patch 8.2.1331: Vim9: :echo with two lists doesn't work

Problem:    Vim9: :echo with two lists doesn't work.
Solution:   Do not skip white space before []. (closes #6552)
diff --git a/src/vim9compile.c b/src/vim9compile.c
index b9b2b6f..87a9fd1 100644
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -3855,7 +3855,7 @@
 		    return FAIL;
 	    }
 	}
-	else if (*p == '[')
+	else if (**arg == '[')
 	{
 	    garray_T	*stack = &cctx->ctx_type_stack;
 	    type_T	**typep;