Skip to content
Snippets Groups Projects
Commit b653b80f authored by Robert Strandh's avatar Robert Strandh Committed by Daniel Kochmański
Browse files

Explain in comment why test is not comforming.

parent 76874a08
No related branches found
No related tags found
No related merge requests found
......@@ -49,9 +49,13 @@
z)
1)
;;; This test is wrong because REPEAT is a main clause whereas FOR is
;;; a variable clause, and no main clause can precede a variable
;;; clause.
;;;
;;; (deftest loop.11.8
;;; (loop repeat 3 for i in '(a b c d e) collect i)
;;; (a b c))
;;; (loop repeat 3 for i in '(a b c d e) collect i)
;;; (a b c))
;;; Enough implementors have complained about this test that
;;; I'm removing it. The standard is self-contradictory
......
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