mirror of
https://github.com/open-goal/jak-project
synced 2026-07-01 12:19:08 -04:00
[goalc] Fix error when putting #f in an array of symbols (#1804)
This commit is contained in:
@@ -26,6 +26,9 @@
|
||||
(-> type parent parent parent)
|
||||
(-> type parent parent parent parent))
|
||||
|
||||
(define *array-of-syms* (new 'static 'array symbol 2 'asdf #f))
|
||||
(format #t "array: ~A ~A~%" (-> *array-of-syms* 0) (-> *array-of-syms* 1))
|
||||
|
||||
#|
|
||||
empty pair: () () () #t #f\
|
||||
empty pair type: pair
|
||||
@@ -34,4 +37,5 @@ basic types: type symbol string function
|
||||
bools: #t #f #t #f #f #t
|
||||
zero: 0
|
||||
parent of type: basic structure object object
|
||||
array: asdf #f
|
||||
|#
|
||||
|
||||
@@ -51,5 +51,6 @@ TEST_F(Jak2GoalcTests, All) {
|
||||
"basic types: type symbol string function\n"
|
||||
"bools: #t #f #t #f #f #t\n"
|
||||
"zero: 0\n"
|
||||
"parent of type: basic structure object object\n0\n"});
|
||||
"parent of type: basic structure object object\n"
|
||||
"array: asdf #f\n0\n"});
|
||||
}
|
||||
Reference in New Issue
Block a user