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

Fix flet.4, which didn't test what it thought it did

parent 238a69e5
No related branches found
No related tags found
No related merge requests found
...@@ -24,10 +24,11 @@ ...@@ -24,10 +24,11 @@
;;; the local function declaration ;;; the local function declaration
(deftest flet.4 (deftest flet.4
(block %f (block %f
(flet ((%f (&optional (x (return-from %f 10))) (flet ((%f (&optional (x (return-from %f :good)))
20)) nil))
(%f))) (%f)
10) :bad))
:good)
(deftest flet.5 (deftest flet.5
(flet ((%f () (return-from %f 15) 35)) (flet ((%f () (return-from %f 15) 35))
......
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