sbcl.sbcl/tests/compiler-output-test.lisp
Nikodemus Siivola 4099112d8e 0.8.21.12: compiler message fixes
* print "caught FOO" messages and error summaries to *ERROR-OUTPUT*,
   not to *STANDARD-OUTPUT*.
 * wrap EVAL guts in WITH-COMPILATION-UNIT so that multiple subforms
   requiring compilation have their output condenced.
 * clean up compilation summary newline handling.
2005-04-01 16:48:03 +00:00

17 lines
236 B
Common Lisp

;;; compiled by compiler.impure.lisp
(defun square (x)
(declare (optimize speed))
(* x x))
(defun unused-var (x)
1)
(defun style-thing (&optional x &key y)
(cons x y))
(defun (bad name) ())
;; "fatal error" from this one
)