mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
9 lines
136 B
Common Lisp
9 lines
136 B
Common Lisp
(defpackage "FOO"
|
|
(:use "CL"))
|
|
|
|
(in-package "FOO")
|
|
|
|
(eval-when (:compile-toplevel :load-toplevel :execute)
|
|
(defun baz ()
|
|
:bad))
|