ref: 2c8a0da890220d21e84f79b5d70c36e0434081fb
parent: 61cf50b02a74978462bfed648f8811700acf53ed
author: Ori Bernstein <[email protected]>
date: Mon Oct 21 08:50:48 EDT 2013
Add missing test file
--- /dev/null
+++ b/test/matchtup.myr
@@ -1,0 +1,11 @@
+use std
+
+const main = {
+ var v = (1, 2)
+
+ match v
+ (1, x): -> 40 + x;;
+ _: std.die("Wat");;
+ ;;
+ -> 0
+}