Skip to content
Snippets Groups Projects
Commit fccdb014 authored by pfdietz's avatar pfdietz
Browse files

Added test that &whole in macro lambda lists can be followed by a destructuring pattern.

parent 19be41cf
No related branches found
No related tags found
No related merge requests found
...@@ -333,6 +333,12 @@ ...@@ -333,6 +333,12 @@
(nil 2) (nil 2)
(1 2)) (1 2))
;;; &whole is followed by a destructuring pattern (see 3.4.4.1.2)
(deftest macrolet.36
(macrolet ((%m (&whole (m a b) c d) `(quote (,m ,a ,b ,c ,d))))
(%m 1 2))
(%m 1 2 1 2))
;;; Symbol-macrolet tests ;;; Symbol-macrolet tests
(deftest symbol-macrolet.1 (deftest symbol-macrolet.1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment