0.7.8.42:
[sbcl.git] / tests / bug204-test.lisp
1 ;;;; Test of EVAL-WHEN inside a local environment
2 (cl:in-package :cl-user)
3
4 (macrolet ((def (x)
5              (pushnew `(:expanded ,x) *bug204-test-status* :test #'equalp)
6              `(pushnew `(:called ,',x) *bug204-test-status* :test #'equalp)))
7   (eval-when (:compile-toplevel)
8     (def :compile-toplevel))
9   (eval-when (:load-toplevel)
10     (def :load-toplevel)))