Comment 3 for bug 1413850

Revision history for this message
Stas Boukarev (stassats) wrote :

With some let-conversion flavor:
(defun foo (a x)
  (break "~a" x)
  (flet ((bar (x y) (print y x)))
    (declare (notinline bar))
    (bar a 1)))