A test no longer fails.
[sbcl.git] / tests / block-compile-test-3.lisp
blob0285e575a990820009c814a2f0e32baffe4559c1
1 (declaim (inline inl))
2 (defun inl (x) (1- x))
3 (defun a (x)
4 (declare (type (unsigned-byte 64) x))
5 (logcount (inl x)))
7 (defun foo2 (x) (1+ (bar2 x)))
8 (declaim (inline bar2))
9 (defun bar2 (x) (1+ x))