Transpose lines.
[sbcl.git] / tests / block-compile-test-2.lisp
blob0d1d4fc3261664980a287e2abe299b8f82674dd2
1 (defun foo1 (x y)
2 (bar2 x y))
4 (defun bar2 (x y)
5 (if (zerop x)
7 (foo1 (1- x) (* y x))))