Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
abcl
abcl
Commits
70021754
Commit
70021754
authored
Sep 01, 2012
by
ehuelsmann@1c010e3e-69d0-11dd-93a8-456734b0d56f
Browse files
Re #241: Add test cases.
parent
bf449190
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/lisp/abcl/compiler-tests.lisp
View file @
70021754
...
...
@@ -482,3 +482,20 @@
10545160975
)
t
)
;;; ticket #241
(
deftest
compiler.4a
(
multiple-value-bind
(
rv
error
)
(
ignore-errors
(
compile
nil
'
(
lambda
(
&rest
args
&optional
x
))))
(
typep
error
'program-error
))
t
)
(
deftest
compiler.4b
(
multiple-value-bind
(
rv
error
)
(
ignore-errors
(
compile
nil
'
(
lambda
(
&key
args
&optional
x
))))
(
typep
error
'program-error
))
t
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment