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
These should all fail:
heine:~/lang/scheme/srfi-231/srfi-231-temp/chibi-test> chibi-scheme > (import (srfi 231)) > (array-stack 0 (list (make-array (make-interval '#(2 2)) list) (make-array (make-interval '#(2 2)) list))'a) #<Array 140719606380320> > (array-stack 0 (list (make-array (make-interval '#(2 2)) list) (make-array (make-interval '#(2 2)) list)) u1-storage-class'a) #<Array 140719607326720> > (array-stack 0 (list (make-array (make-interval '#(2 2)) list) (make-array (make-interval '#(2 2)) list)) u1-storage-class) #<Array 140719607497344>
This should eval to #t:
#t
> (equal? generic-storage-class (array-storage-class (array-stack 1 (list (array-copy (make-array (make-interval '#(10)) (lambda (i) 42)) u8-storage-class) (array-copy (make-array (make-interval '#(10)) (lambda (i) 5000)) u16-storage-class))))) ERROR: byte-vector-set!: not an octet: 5000
The text was updated successfully, but these errors were encountered:
Fixed in a8939fe.
Sorry, something went wrong.
No branches or pull requests
These should all fail:
This should eval to
#t
:The text was updated successfully, but these errors were encountered: