X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Fclos.impure.lisp;h=2f642b56ceeed3da82c65fd5ad83033b3a4b868c;hb=df679ed627975948b1cee190f4d79c397588c43e;hp=22dc62bef281b682687b570492449f0767b5010a;hpb=ef1534f00fcf9d5554a91c70485b4ede40fdcb4f;p=sbcl.git diff --git a/tests/clos.impure.lisp b/tests/clos.impure.lisp index 22dc62b..2f642b5 100644 --- a/tests/clos.impure.lisp +++ b/tests/clos.impure.lisp @@ -320,7 +320,9 @@ (assert-program-error (defclass foo008 () (a :initarg :a) (:default-initargs :a 1) - (:default-initargs :a 2)))) + (:default-initargs :a 2))) + ;; and also BUG 47d, fixed in sbcl-0.8alpha.0.26 + (assert-program-error (defgeneric if (x)))) ;;; DOCUMENTATION's argument-precedence-order wasn't being faithfully ;;; preserved through the bootstrap process until sbcl-0.7.8.39. @@ -588,5 +590,25 @@ (assert (= (something-that-specializes (make-instance 'other-name-for-class)) 2)) +;;; more forward referenced classes stuff +(defclass frc-1 (frc-2) ()) +(assert (subtypep 'frc-1 (find-class 'frc-2))) +(assert (subtypep (find-class 'frc-1) 'frc-2)) +(assert (not (subtypep (find-class 'frc-2) 'frc-1))) +(defclass frc-2 (frc-3) ((a :initarg :a))) +(assert (subtypep 'frc-1 (find-class 'frc-3))) +(defclass frc-3 () ()) +(assert (typep (make-instance 'frc-1 :a 2) (find-class 'frc-1))) +(assert (typep (make-instance 'frc-2 :a 3) (find-class 'frc-2))) + +;;; check that we can define classes with two slots of different names +;;; (even if it STYLE-WARNs). +(defclass odd-name-class () + ((name :initarg :name) + (cl-user::name :initarg :name2))) +(let ((x (make-instance 'odd-name-class :name 1 :name2 2))) + (assert (= (slot-value x 'name) 1)) + (assert (= (slot-value x 'cl-user::name) 2))) + ;;;; success (sb-ext:quit :unix-status 104)