sbcl.sbcl/tests/undefined-classoid-bug-2.lisp
2013-10-03 22:55:18 +04:00

13 lines
191 B
Common Lisp

(in-package "CL-USER")
(defun a-struct-referencer-2 (struct)
(a-struct-slot struct))
(defun a-class-typep (x)
(typep x 'a-class))
(defstruct a-struct slot)
(defclass a-class ()
())