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/matchbind.myr | |
parent | 09af6b8f6597c29208b8725b4f67bd7ed6d45e85 (diff) | |
download | mc-be5462a429323b0c69e9cb4061bdc520be9727c1.tar.gz |
Fix most tests.
Matching constants is still buggered.
Diffstat (limited to 'test/matchbind.myr')
-rw-r--r-- | test/matchbind.myr | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/matchbind.myr b/test/matchbind.myr index 2bcc780..bddd4ac 100644 --- a/test/matchbind.myr +++ b/test/matchbind.myr @@ -16,6 +16,7 @@ const main = { | `Int x: std.exit(x) | `Chr 'a': std.exit(4) | `Nil: std.exit(6) + | x: std.die("Impossible match failure\n") ;; } |