[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Bug in Checking Initargs



(in-package 'pcl)

(defclass foo ()
  ())

(defmethod initialize-instance :after ((foo foo) &rest args)
  nil)

;; Shouldn't the &rest in initialize-instance on foo allow the following.
;; I think so.
(make-instance 'foo :bar :baz)