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

Add a test for bug recently found in sbcl involving nil keyword arguments.

parent 86887094
No related branches found
No related tags found
No related merge requests found
...@@ -793,6 +793,10 @@ ...@@ -793,6 +793,10 @@
(signals-error (remove 'a nil 'bad t) program-error) (signals-error (remove 'a nil 'bad t) program-error)
t) t)
(deftest remove.error.4a
(signals-error (remove 'a nil nil t) program-error)
t)
(deftest remove.error.5 (deftest remove.error.5
(signals-error (remove 'a nil 'bad t :allow-other-keys nil) program-error) (signals-error (remove 'a nil 'bad t :allow-other-keys nil) program-error)
t) t)
......
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