sbcl.sbcl/contrib/sb-cover/test-data-6.lisp
Charles Zhang ae86191b9f Missing file.
argh
2022-05-09 13:22:15 -07:00

9 lines
180 B
Common Lisp

(declaim (optimize sb-c:store-coverage-data))
(defun nlx-from-flet ()
(flet ((foo (x)
(return-from nlx-from-flet x)))
(foo 3)
(print "reached")
(foo 4)))