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/matchunion_sl.myr | |
parent | 09af6b8f6597c29208b8725b4f67bd7ed6d45e85 (diff) | |
download | mc-be5462a429323b0c69e9cb4061bdc520be9727c1.tar.gz |
Fix most tests.
Matching constants is still buggered.
Diffstat (limited to 'test/matchunion_sl.myr')
-rw-r--r-- | test/matchunion_sl.myr | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/matchunion_sl.myr b/test/matchunion_sl.myr index 3a4ddb3..e8f9dd7 100644 --- a/test/matchunion_sl.myr +++ b/test/matchunion_sl.myr @@ -15,6 +15,7 @@ const main = { | `Int 127: std.exit(42) | `Str s: std.put("%s\n", s) | `Nil: + | _: std.die("Impossible match failure\n") ;; } |