diff src/testdir/test_vim9_enum.vim @ 34690:ad86d59d7510 v9.1.0226

patch 9.1.0226: Not able to assign enum values to an enum static variable Commit: https://github.com/vim/vim/commit/abedca96efa76db2bba74a5264df632da862203d Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Fri Mar 29 10:08:23 2024 +0100 patch 9.1.0226: Not able to assign enum values to an enum static variable Problem: Not able to assign enum values to an enum static variable (zzzyxwvut) Solution: Make it work (Yegappan Lakshmanan) related: #14224 closes: #14329 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Fri, 29 Mar 2024 10:15:06 +0100
parents 5b25ec43f208
children a1d0ef54a24b
line wrap: on
line diff
--- a/src/testdir/test_vim9_enum.vim
+++ b/src/testdir/test_vim9_enum.vim
@@ -964,7 +964,7 @@ def Test_enum_refcount()
 
     enum Star
       Gemini,
-      Orion,
+      Orion
     endenum
     assert_equal(3, test_refcount(Star))
     assert_equal(2, test_refcount(Star.Gemini))
@@ -1473,4 +1473,17 @@ def Test_enum_eval()
   v9.CheckSourceSuccess(lines)
 enddef
 
+" Test for using "values" in an enum class variable
+def Test_use_enum_values_in_class_variable()
+  var lines =<< trim END
+    vim9script
+    enum Dir
+      North, South
+      static const dirs: list<Dir> = Dir.values
+    endenum
+    assert_equal([Dir.North, Dir.South], Dir.dirs)
+  END
+  v9.CheckSourceSuccess(lines)
+enddef
+
 " vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker