diff --git a/ansi-tests/function.lsp b/ansi-tests/function.lsp index 5b195f12aaab3d18088b672f74c7ec8e18a2d5a6..6ebd4b22d8537cd5f7c5a85f71794320dd7f5eba 100644 --- a/ansi-tests/function.lsp +++ b/ansi-tests/function.lsp @@ -92,3 +92,13 @@ ;;;(deftest function.14 ;;; (macrolet ((%f () nil)) (not-mv (typep #'%f 'function))) ;;; nil) + +;;; Tests of FUNCTION type specifiers + +(deftest function.14 + (flet ((%f () nil)) + (declare (optimize safety debug)) + (let ((f #'%f)) + (declare (type (function () null) f)) + (funcall f))) + nil)