Skip to content

Instantly share code, notes, and snippets.

@quicklisp
Last active December 9, 2019 12:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save quicklisp/d58633b3f42172aa7485c6508b7a31e3 to your computer and use it in GitHub Desktop.
Save quicklisp/d58633b3f42172aa7485c6508b7a31e3 to your computer and use it in GitHub Desktop.
;;;; warno.asd
(asdf:defsystem #:warno
:serial t
:depends-on (#:zs3)
:components ((:file "warno")))
;;;; warno.lisp
(defpackage #:warno
(:use #:cl))
(in-package #:warno)
(defun blorp ())
(defun blorp ())
;;;; Make these known to ASDF, then (ql:quickload "warno").
;;;;
;;;; IDEAL output should be quiet loading of ZS3 (which has many
;;;; prerequisites itself) followed by verbose loading, full WARNING,
;;;; and ASDF failure into the debugger.
;;;;
;;;; ACTUAL output is quiet loading of everything despite the
;;;; duplicate function problem.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment