bldc/tests/test_gc_11.lisp

10 lines
145 B
Common Lisp

(define v (list 1 2 3 4))
(define fv (flatten v))
(gc)
(check (and
(eq (unflatten fv) (list 1 2 3 4))
(eq v (list 1 2 3 4))))