aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spec/inputs/destructure.yue4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/inputs/destructure.yue b/spec/inputs/destructure.yue
index c68045d..7bf5a88 100644
--- a/spec/inputs/destructure.yue
+++ b/spec/inputs/destructure.yue
@@ -24,9 +24,9 @@ do
24 24
25 do :a, :b, c = tbl 25 do :a, :b, c = tbl
26 26
27 do :a, b, :c = tbl 27 do a, :b, :c = tbl, _
28 28
29 do a, :b, :c = tbl 29 do :a, b, :c = tbl, _, _
30 30
31--- 31---
32 32