X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Fclos.impure.lisp;h=b4462cd453cc355fe2d9f767338145eb19b93177;hb=3aaed55326303bb377c4821c5e83b2e4e9c538fc;hp=b08b1d901e5b8cc812193b830b6c35bc128f8c7b;hpb=223ac55abed63769d0a3d5831b499d0ee9ee6462;p=sbcl.git diff --git a/tests/clos.impure.lisp b/tests/clos.impure.lisp index b08b1d9..b4462cd 100644 --- a/tests/clos.impure.lisp +++ b/tests/clos.impure.lisp @@ -342,6 +342,30 @@ (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)