Add a test-case for the previous commit.
authorStas Boukarev <stassats@gmail.com>
Thu, 3 Oct 2013 18:55:18 +0000 (22:55 +0400)
committerStas Boukarev <stassats@gmail.com>
Thu, 3 Oct 2013 18:55:18 +0000 (22:55 +0400)
tests/undefined-classoid-bug-1.lisp
tests/undefined-classoid-bug-2.lisp

index 9d93fca..bf680dc 100644 (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))
index 39a0fe8..add876e 100644 (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 ()
+  ())