diff options
author | Ori Bernstein <ori@eigenstate.org> | 2012-06-28 01:04:21 -0400 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2012-06-28 01:04:21 -0400 |
commit | 472da9fcf1f7d3b869f1ac140cac1c780cd4716e (patch) | |
tree | 465e8b062885c7b62c0de52f2e442d23b3773680 /test/union-missingarg.myr | |
parent | 88abf6cade6179a9fdfb2486a797c754485f3622 (diff) | |
download | mc-472da9fcf1f7d3b869f1ac140cac1c780cd4716e.tar.gz |
Add a number of tests.
Diffstat (limited to 'test/union-missingarg.myr')
-rw-r--r-- | test/union-missingarg.myr | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/union-missingarg.myr b/test/union-missingarg.myr new file mode 100644 index 0000000..c19f36e --- /dev/null +++ b/test/union-missingarg.myr @@ -0,0 +1,7 @@ +type u = union + `Foo int +;; + +const main = { + `Foo +} |