diff options
| author | Mistivia <i@mistivia.com> | 2025-06-21 21:07:59 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-06-21 21:07:59 +0800 |
| commit | 26b750de09456324d1c098da5eb426089ead5264 (patch) | |
| tree | ad77e72a6bd0ef8903775baf6d4a1fa2bb78cf00 /tests/arithmetic.lisp | |
| parent | 1cf7adef90777698d1f17363a5f82c997d5f1c34 (diff) | |
fix uninit binding crash
Diffstat (limited to 'tests/arithmetic.lisp')
| -rw-r--r-- | tests/arithmetic.lisp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/arithmetic.lisp b/tests/arithmetic.lisp index 05459f6..6175705 100644 --- a/tests/arithmetic.lisp +++ b/tests/arithmetic.lisp @@ -14,6 +14,8 @@ (assert (>= 2 1)) (assert (>= 1 1)) (assert (not (>= 0 1))) +(assert (/= 2 1.0)) +(assert (not (/= 1 1))) (assert-error (+ 1 "a")) (assert-error (- 1 "a")) |
