diff options
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") ;; } |