Files
jak-project/test/goalc/source_templates/functions/inline-with-block-2.static.gc
T
2020-11-22 20:10:33 -05:00

11 lines
262 B
Common Lisp

;; testing that we can have a block's final statement be a none.
(defun inline-with-block-2 ()
(declare (inline))
(block a-block
(return-from a-block 3)
)
)
;; this is a little hacky, this technically returns none.
(inline-with-block-2)