/usr/share/doc/cl-asdf/examples/test-tmp.lsp is in cl-asdf 2:3.1.6-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | ;; part of the test-module-pathnames test
(in-package :test-package)
(defparameter *test-tmp-cl* t)
(eval-when (:compile-toplevel :execute)
(format t "compiling test-tmp.lsp~%"))
(eval-when (:load-toplevel :execute)
(format t "loading test-tmp.lsp~%"))
|