sasagawa888 / eisl

ISLisp interpreter/compiler
Other
272 stars 22 forks source link

Bug of ILOS. destruction of environment. #247

Closed sasagawa888 closed 1 year ago

sasagawa888 commented 1 year ago

(defgeneric foo-41 (a &rest r)) (defmethod foo-41 ((a ) &rest r) (setf (car r) 9) (call-next-method)) (defmethod foo-41 ((a ) &rest r) (car r)) ;($test (foo-41 1 2) 2 eql)

(foo-41 1 2) should return 2. not 9.

sasagawa888 commented 1 year ago

Fixed.