summaryrefslogtreecommitdiff
path: root/test/typecheck
diff options
context:
space:
mode:
authorAlasdair Armstrong2017-07-27 13:22:09 +0100
committerAlasdair Armstrong2017-07-27 13:22:09 +0100
commit55cef4bf4baf94c5984b02aea6d53abcf82ba1ea (patch)
tree1c6bc0ae5e5a5944a4c433e4e67726aa802f9539 /test/typecheck
parentc1a431aa50a65704a349174ecf7b9017ff87c570 (diff)
Fixed bug with pattern synonyms in Cons and List patterns
Diffstat (limited to 'test/typecheck')
-rw-r--r--test/typecheck/pass/cons_pattern_synonym.sail7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/typecheck/pass/cons_pattern_synonym.sail b/test/typecheck/pass/cons_pattern_synonym.sail
new file mode 100644
index 00000000..f5b26294
--- /dev/null
+++ b/test/typecheck/pass/cons_pattern_synonym.sail
@@ -0,0 +1,7 @@
+typedef ty = list<(bit[8])>
+
+function bool foo ((ty) l) =
+ switch l {
+ case _ :: _ -> false
+ case _ -> true
+ } \ No newline at end of file