about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorJakub Wieczorek <jakub@jakub.cc>2014-06-09 01:28:26 +0200
committerJakub Wieczorek <jakub@jakub.cc>2014-06-20 17:08:57 +0200
commit76f7eeef52fac46f74c84f4fc05073745c741cb3 (patch)
treea05e5bf83a40a78dad94f2eb813dce6caef1dafd /src/test
parent9dca26cf92b26ea878b142430d2309919a85aee6 (diff)
downloadrust-76f7eeef52fac46f74c84f4fc05073745c741cb3.tar.gz
rust-76f7eeef52fac46f74c84f4fc05073745c741cb3.zip
Fix #14393
String patterns should have a single constructor of arity 0.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-pass/issue-14393.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/run-pass/issue-14393.rs b/src/test/run-pass/issue-14393.rs
new file mode 100644
index 00000000000..e97021b4869
--- /dev/null
+++ b/src/test/run-pass/issue-14393.rs
@@ -0,0 +1,17 @@
+// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+fn main() {
+    match ("", 1u) {
+        (_, 42u) => (),
+        ("", _) => (),
+        _ => ()
+    }
+}