mirror of
https://github.com/open-goal/jak-project
synced 2026-08-07 02:06:59 -04:00
27f0a7ca44
* refactor tests and analysis passes * identity test working * combine test categories with only a few cases * more fixes
11 lines
262 B
Common Lisp
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) |