CL-USER> (ql:quickload :filtered-functions) CL-USER> (defgeneric frob (bar) (:generic-function-class filtered-functions:filtered-function)) # CL-USER> (defmethod frob (bar)) ; in: DEFMETHOD FROB (T) ; (#:METHOD-FUNCTION (BAR)) ; ; caught STYLE-WARNING: ; The variable BAR is defined but never used. ; ; compilation unit finished ; caught 1 STYLE-WARNING condition # CL-USER> (defgeneric frob2 (bar)) # CL-USER> (defmethod frob2 (bar)) #