source: trunk/abcl/t/eg/compiler-fails-on-inline-recursion.lisp

Last change on this file was 15153, checked in by Mark Evenson, 4 years ago

Test for compiler stack recursion problem

From <https://abcl.org/trac/ticket/353>.

File size: 106 bytes
Line 
1;; https://abcl.org/trac/ticket/353
2(declaim (inline foo))
3(defun foo ()
4  (foo))
5
6(defun bar ()
7  (foo))
Note: See TracBrowser for help on using the repository browser.