#485: Differing &keyword generic method signatures cannot be eval'd -------------------------------+----------------------- Reporter: Mark Evenson | Owner: (none) Type: defect | Status: new Priority: major | Milestone: 1.8.1 Component: interpreter | Version: 1.8.1-dev Resolution: | Keywords: Parent Tickets: | -------------------------------+----------------------- Comment (by Mark Evenson): The following forms will compile as a file unit, but fail when evaluated in a REPL. {{{ (in-package :cl-user) (defmethod test ((a integer) &key b c) (declare (ignore a b c))) (defmethod test ((a real) &key b) (declare (ignore (a b)))) }}} -- Ticket URL: <https://abcl.org/trac/ticket/485#comment:3> armedbear <https://abcl.org> armedbear