sasagawa888 / eisl

ISLisp interpreter/compiler
Other
272 stars 22 forks source link

Bug of ILOS #245

Closed sasagawa888 closed 1 year ago

sasagawa888 commented 1 year ago

(defgeneric foo-35 (x) (:method :around (x) (call-next-method)) (:method ((x )) 'primary-)) ;($test (foo-35 3) primary-) ;($error (foo-35 3.3) )

(foo-35 3.3) returns nil. but, it should return error.

sasagawa888 commented 1 year ago

Fixed.