sbcl.sbcl/tests/circ-tree-test.lisp
Nikodemus Siivola 23c0c48f56 0.9.16.6: better circularity detection in fasl dumper
* We need to detect car-circularity too, which can get expensive, so
   we approximate: CYCLIC-LIST-P => MAYBE-CYCLIC-P
 * Reported by Marco Monteiro on sbcl-devel.
2006-08-29 13:35:23 +00:00

6 lines
179 B
Common Lisp

;;; fasl-dumper and circular trees, reported by Marco Monteiro
(COMPILE NIL
'(LAMBDA ()
(LIST '#5= (#5# #5# . #5#))
(LIST '#6= (#7= (#6#) . #7#))))