Files
jak-project/goal_src/test/test-new-inline-array-class.gc
T
water111 27b865c0df Add methods and pointers (#53)
* method calls and sorting

* add more tests and fix some alias stuff
2020-09-19 16:50:42 -04:00

14 lines
302 B
Common Lisp

(deftype my-inline-array-type (inline-array-class)
()
)
(set! (-> my-inline-array-type heap-base) 12)
(let ((my-inline-array-obj
(the my-inline-array-type
(new
'debug
'my-inline-array-type
234))))
(asize-of my-inline-array-obj)
)