Make INFO's compiler-macro more forgiving.
[sbcl.git] / tests / parallel-fasl-load-test.lisp
blob8beb7a20984938f0aef1f21e30b27b5e22e5caa9
1 (defun one-fun ()
2 1)
4 (defun two-fun ()
5 2)
7 (defvar *var* 42 "This is var.")
9 (defparameter *quux* 13 "This is quux.")
11 (defclass a-class ()
12 ((slot :initarg :slot :reader a-slot)))
14 (defgeneric gen-fun (x)
15 (:method ((a cons)) 'cons))
17 (defmethod gen-fun ((a a-class)) 'a-class)