jak-project/test/goalc/source_templates/control-statements/inline-with-block-3.static.gc
water111 27f0a7ca44
[Decompiler] Begin expression conversion, rearrange tests (#209)
* refactor tests and analysis passes

* identity test working

* combine test categories with only a few cases

* more fixes
2021-01-23 16:32:56 -05:00

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