We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wscl/wscl-issues/proposed/aref-accessor-dimension-error
Lines 52 to 88 in 6edde3b
Question: is a TYPE-ERROR signaled in these cases?
Test cases for the above question:
(progn (defun one (object) (declare (optimize (safety 3))) (aref object 1)) (defun two (object) (declare (optimize (safety 3))) (setf (aref object 1) 345)) (list (if (typep (nth-value 1 (ignore-errors (one (make-array 1 :initial-element nil)))) 'type-error) t nil) (if (typep (nth-value 1 (ignore-errors (two (make-array 1 :initial-element nil)))) 'type-error) t nil)))
Results:
CCL: (NIL NIL) ECL: (T T) CLISP: (T T) ABCL: (T T) Clasp: (T T) CMUCL: (NIL NIL) ACL: (T T) LWPE: (NIL NIL)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
wscl/wscl-issues/proposed/aref-accessor-dimension-error
Lines 52 to 88 in 6edde3b
Question: is a TYPE-ERROR signaled in these cases?
Test cases for the above question:
Results:
CCL: (NIL NIL)
ECL: (T T)
CLISP: (T T)
ABCL: (T T)
Clasp: (T T)
CMUCL: (NIL NIL)
ACL: (T T)
LWPE: (NIL NIL)
The text was updated successfully, but these errors were encountered: