sbcl.sbcl/tests/parallel-fasl-load-test.lisp
Nikodemus Siivola e2574c9090 remove world-lock from around FASL loading
The fasl loader itself is thread safe these days, but what about the stuff
  we do at load time?

  In principle it /should/ be, so let the shakeout cruise start.
2012-04-24 13:13:53 +03:00

18 lines
286 B
Common Lisp

(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)