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