X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fcompiler.impure.lisp;h=adc6a7549d66e052a36a8e8d4c9386d0275e4a49;hb=7a2ee8c1aff0bdd286cf5d43ab40bff7fed86bea;hp=fe4f6c3a0e022f166b026718afd44d79bcf268d6;hpb=6c1e23b7535e86697e518125f60550ecac82439d;p=sbcl.git diff --git a/tests/compiler.impure.lisp b/tests/compiler.impure.lisp index fe4f6c3..adc6a75 100644 --- a/tests/compiler.impure.lisp +++ b/tests/compiler.impure.lisp @@ -1409,6 +1409,28 @@ (compile nil `(lambda (x) (cmacro-with-tricky-key x 42))) (assert (and (not warn) (not fail))) (assert (string= "fun=42" (funcall fun 'tricky-key))))) + +(defun test-function-983 (x) x) +(define-compiler-macro test-function-983 (x) x) + +(with-test (:name funcall-compiler-macro) + (assert + (handler-case + (and (compile nil + `(lambda () + (funcall (function test-function-983 junk) 1))) + nil) + (sb-c:compiler-error () t)))) + +(defsetf test-984 %test-984) + +(with-test (:name :setf-function-with-setf-expander) + (assert + (handler-case + (and + (defun (setf test-984) ()) + nil) + (style-warning () t)))) ;;;; tests not in the problem domain, but of the consistency of the ;;;; compiler machinery itself