hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 7a76e39ea69965791db3991b3b9a6bdf4bbf2f2b
parent ffd1caf8f760de695fd10590f6592d29e574d638
Author: Sebastian <sebastian@sebsite.pw>
Date:   Sun, 10 Mar 2024 19:02:40 -0400

regex: fix inexhaustive match

Diffstat:
Mregex/regex.ha | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/regex/regex.ha b/regex/regex.ha @@ -646,6 +646,7 @@ fn run_thread( if (!matched) { threads[i].failed = true; }; + case => abort(); // unreachable }; threads[i].pc += 1;