mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
31 lines
1.1 KiB
Common Lisp
31 lines
1.1 KiB
Common Lisp
;;;; miscellaneous side-effectful tests of the MOP
|
|
|
|
;;;; This software is part of the SBCL system. See the README file for
|
|
;;;; more information.
|
|
;;;;
|
|
;;;; While most of SBCL is derived from the CMU CL system, the test
|
|
;;;; files (like this one) were written from scratch after the fork
|
|
;;;; from CMU CL.
|
|
;;;;
|
|
;;;; This software is in the public domain and is provided with
|
|
;;;; absolutely no warranty. See the COPYING and CREDITS files for
|
|
;;;; more information.
|
|
|
|
;;; this file tests that it is not possible to add an
|
|
;;; optimization-invalidating method to #'(SETF
|
|
;;; SLOT-VALUE-USING-CLASS). If a way is found to preserve the
|
|
;;; optimization, or if the optimization is deemed to be invalid, then
|
|
;;; this test can go away.
|
|
|
|
(defclass foo-class (standard-class) ())
|
|
|
|
(defclass foo-effective-slot-definition (standard-effective-slot-definition)
|
|
())
|
|
|
|
(with-test (:name :mop-16)
|
|
(assert-error
|
|
(defmethod (setf sb-mop:slot-value-using-class)
|
|
((new-value integer) (class foo-class)
|
|
(object standard-object) (slotd foo-effective-slot-definition))
|
|
"Haha")))
|