about summary refs log tree commit diff
path: root/tests/source
diff options
context:
space:
mode:
authorNick Cameron <ncameron@mozilla.com>2017-03-09 15:49:58 +1300
committerNick Cameron <ncameron@mozilla.com>2017-03-09 15:49:58 +1300
commite3aad6ee83a73be49132b65ea8abc099ae8da027 (patch)
treed6113143292ab0218f49897561d3873645177955 /tests/source
parentd107ca12b83b679ed7aab54a72fcd0d01b511ed8 (diff)
Be smarter about finding the span for `..` in patterns
Fixes #1319
Diffstat (limited to 'tests/source')
-rw-r--r--tests/source/pattern.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/source/pattern.rs b/tests/source/pattern.rs
index a6c25225db2..468ff579710 100644
--- a/tests/source/pattern.rs
+++ b/tests/source/pattern.rs
@@ -38,3 +38,8 @@ impl<'a,'b> ResolveGeneratedContentFragmentMutator<'a,'b> {
                 )
             ) => {}}}
 }
+
+fn issue_1319() {
+    if let (Event { .. }, .. ) = ev_state {}
+}
+