[Git][cmucl/cmucl][issue-417-defmethod-check-aux-vars] Add suggested tests for &aux variables

Raymond Toy pushed to branch issue-417-defmethod-check-aux-vars at cmucl / cmucl Commits: 47cca507 by Raymond Toy at 2025-06-30T07:14:32-07:00 Add suggested tests for &aux variables Tests suggested by @cshapiro in the MR review. - - - - - 1 changed file: - tests/pcl/defmethod.lisp Changes: ===================================== tests/pcl/defmethod.lisp ===================================== @@ -75,7 +75,9 @@ (define-defmethod-test-1 defmethod.21 dm2 nil (x &optional y z)) (define-defmethod-test-1 defmethod.22 dm2 nil (x &key y)) (define-defmethod-test-1 defmethod.23 dm2 nil (x y &aux (x x) (y y))) - +(define-defmethod-test-1 defmethod.23 dm2 nil (x y &aux z)) +(define-defmethod-test-1 defmethod.23 dm2 nil (x y &aux z z)) +(define-defmethod-test-1 defmethod.23 dm2 nil (x y &aux z (z z))) ;;; ;;; A forward-referenced class used as specializer signaled an ;;; error at some point. View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/47cca5074fba48e985445e1c... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/47cca5074fba48e985445e1c... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)