mirror of
https://github.com/open-goal/jak-project
synced 2026-08-06 18:03:30 -04:00
27f0a7ca44
* refactor tests and analysis passes * identity test working * combine test categories with only a few cases * more fixes
10 lines
149 B
Common Lisp
10 lines
149 B
Common Lisp
(defun inline-with-block-3 ()
|
|
(declare (inline))
|
|
(block a-block
|
|
(return-from a-block 4)
|
|
)
|
|
(none)
|
|
)
|
|
|
|
(inline-with-block-3)
|
|
4 |