* (defclass class-a () ()) # * (defclass class-b () ()) # * (defgeneric another-fn (obj)) # * (defmethod another-fn ((obj class-a)) :class-a) ; Compiling LAMBDA (.PV-CELL. .NEXT-METHOD-CALL. OBJ): ; Compiling Top-Level Form: # * (defmethod another-fn ((obj class-b)) :class-b) ; Compiling LAMBDA (.PV-CELL. .NEXT-METHOD-CALL. OBJ): ; Compiling Top-Level Form: #