projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f564e6b
)
Fix compiler warning.
author
Chris Hanson
<org/chris-hanson/cph>
Sun, 7 Jan 2018 04:35:57 +0000
(23:35 -0500)
committer
Chris Hanson
<org/chris-hanson/cph>
Sun, 7 Jan 2018 04:35:57 +0000
(23:35 -0500)
tests/runtime/test-predicate-dispatch.scm
patch
|
blob
|
history
diff --git
a/tests/runtime/test-predicate-dispatch.scm
b/tests/runtime/test-predicate-dispatch.scm
index cfc17e29f689c5b2c547d8f3130279e647360b7b..016edfde81ec8530c4fc6a91b14910ba01289572 100644
(file)
--- a/
tests/runtime/test-predicate-dispatch.scm
+++ b/
tests/runtime/test-predicate-dispatch.scm
@@
-37,6
+37,7
@@
USA.
(define-predicate-dispatch-handler foo (list any-object?)
(lambda (arg)
+ (declare (ignore arg))
'foobar))
(assert-equal (foo #f) 'foobar)))