Unbreak non-x86 builds
[sbcl.git] / tests / undefined-classoid-bug-2.lisp
blobadd876eab98756e9cb4292af00b657ed01fc8e4c
1 (in-package "CL-USER")
3 (defun a-struct-referencer-2 (struct)
4 (a-struct-slot struct))
6 (defun a-class-typep (x)
7 (typep x 'a-class))
9 (defstruct a-struct slot)
11 (defclass a-class ()
12 ())