Add a test-case for the previous commit.

This commit is contained in:
Stas Boukarev 2013-10-03 22:55:18 +04:00
parent 993c261469
commit a566e334e1
2 changed files with 8 additions and 0 deletions

View file

@ -3,3 +3,5 @@
(defun a-struct-referencer-1 (struct)
(a-struct-slot struct))
(defun a-class-typep-2 (x)
(typep x 'a-class))

View file

@ -3,4 +3,10 @@
(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 ()
())