summaryrefslogtreecommitdiff
path: root/tests/parallel-fasl-load-test.lisp
blob: 8beb7a20984938f0aef1f21e30b27b5e22e5caa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defun one-fun ()
  1)

(defun two-fun ()
  2)

(defvar *var* 42 "This is var.")

(defparameter *quux* 13 "This is quux.")

(defclass a-class ()
  ((slot :initarg :slot :reader a-slot)))

(defgeneric gen-fun (x)
  (:method ((a cons)) 'cons))

(defmethod gen-fun ((a a-class)) 'a-class)