Make stuff regarding debug names much less complex.
[sbcl.git] / tests / block-compile-test-4.lisp
blob883bd480052acb05083853a700c53830c7a6e2ca
1 ;;; From the CMU CL user manual.
2 (declaim (sb-ext:start-block fun1 fun3))
4 (defun fun1 (x)
5 (print x))
7 (defun fun2 ()
8 (1+ (fun1 6)))
10 (defun fun3 (x)
11 (if x
12 (fun1 3)
13 (fun2)))
15 (declaim (sb-ext:end-block))
17 (defun fun4 (z)
18 (+ 2 (fun1 z)))