sbcl.sbcl/tests/derived-function-type-casts.lisp
Stas Boukarev 5ee931c9d0 More carefully examine combination names.
lvar-uses may have lists or casts in it, don't assume it to be refs.

Patch by Paul Khuong.

Fixes lp#1234919
2015-02-17 01:59:27 +03:00

8 lines
236 B
Common Lisp

(defun derived-function-type-casts-make-fun () (lambda ()))
(defun derived-function-type-casts ()
(let ((a (derived-function-type-casts-make-fun))
(b (derived-function-type-casts-make-fun)))
(funcall a)
(funcall b)))