1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 20:30:28 +02:00

Use *unspecified* instead of #f to get an uninitialized array.

This commit is contained in:
Marius Vollmer 2005-01-04 23:41:48 +00:00
parent 1281f0fc22
commit 28c1c15c75

View file

@ -315,7 +315,9 @@
(for-each (lambda (type) (for-each (lambda (type)
(pass-if (symbol->string type) (pass-if (symbol->string type)
(eq? type (eq? type
(array-type (make-typed-array type #f '(5 6)))))) (array-type (make-typed-array type
*unspecified*
'(5 6))))))
types)))) types))))
;;; ;;;