X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fclos.impure.lisp;h=b4462cd453cc355fe2d9f767338145eb19b93177;hb=3aaed55326303bb377c4821c5e83b2e4e9c538fc;hp=ffdbd3b4c31b6936237760ce44eb675982fd9f23;hpb=920f9a94cc0512d7fbab3f1578e8b71485b18b00;p=sbcl.git diff --git a/tests/clos.impure.lisp b/tests/clos.impure.lisp index ffdbd3b..b4462cd 100644 --- a/tests/clos.impure.lisp +++ b/tests/clos.impure.lisp @@ -327,6 +327,45 @@ (assert (eq (no-next-method-test 1) 'success)) (assert (null (ignore-errors (no-next-method-test 'foo)))) +;;; regression test for bug 176, following a fix that seems +;;; simultaneously to fix 140 while not exposing 176 (by Gerd +;;; Moellmann, merged in sbcl-0.7.9.12). +(dotimes (i 10) + (let ((lastname (intern (format nil "C176-~D" (1- i)))) + (name (intern (format nil "C176-~D" i)))) + (eval `(defclass ,name + (,@(if (= i 0) nil (list lastname))) + ())) + (eval `(defmethod initialize-instance :after ((x ,name) &rest any) + (declare (ignore any)))))) +(defclass b176 () (aslot-176)) +(defclass c176-0 (b176) ()) +(assert (= 1 (setf (slot-value (make-instance 'c176-9) 'aslot-176) 1))) + +;;; DEFINE-METHOD-COMBINATION was over-eager at checking for duplicate +;;; primary methods: +(define-method-combination dmc-test-mc (&optional (order :most-specific-first)) + ((around (:around)) + (primary (dmc-test-mc) :order order :required t)) + (let ((form (if (rest primary) + `(and ,@(mapcar #'(lambda (method) + `(call-method ,method)) + primary)) + `(call-method ,(first primary))))) + (if around + `(call-method ,(first around) + (,@(rest around) + (make-method ,form))) + form))) + +(defgeneric dmc-test-mc (&key k) + (:method-combination dmc-test-mc)) + +(defmethod dmc-test-mc dmc-test-mc (&key k) + k) + +(dmc-test-mc :k 1) + ;;;; success (sb-ext:quit :unix-status 104)