From 75514be2895ac42fc44209f1a42b7672bf1d9c2c Mon Sep 17 00:00:00 2001 From: pfdietz <pfdietz@localhost> Date: Sun, 8 Feb 2004 14:15:24 +0000 Subject: [PATCH] Tests that (function ...) type specifiers are accepted in type declarations of variables. --- ansi-tests/function.lsp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ansi-tests/function.lsp b/ansi-tests/function.lsp index 5b195f12..6ebd4b22 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) -- GitLab