diff options
author | Ori Bernstein <ori@eigenstate.org> | 2014-11-04 21:53:47 -0500 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2014-11-04 21:53:47 -0500 |
commit | be5462a429323b0c69e9cb4061bdc520be9727c1 (patch) | |
tree | b658190273c2d17a07ebbb1c2b55975c044bae58 /test/matchargstr.myr | |
parent | 09af6b8f6597c29208b8725b4f67bd7ed6d45e85 (diff) | |
download | mc-be5462a429323b0c69e9cb4061bdc520be9727c1.tar.gz |
Fix most tests.
Matching constants is still buggered.
Diffstat (limited to 'test/matchargstr.myr')
-rw-r--r-- | test/matchargstr.myr | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/matchargstr.myr b/test/matchargstr.myr index 6c87821..50d539b 100644 --- a/test/matchargstr.myr +++ b/test/matchargstr.myr @@ -17,6 +17,7 @@ const main = { | `Str "fsda": std.fatal(1, "Wrong match `Str \"fsda\"\n") | `Str "asdf": std.put("Correct `Str \"asdf\"!\n") | `Nil: std.fatal(1, "Wrong match `Str \"fsda\"\n") + | _: std.fatal(1, "Impossible failed match\n") ;; } |