about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMasaki Hara <ackie.h.gmai@gmail.com>2017-07-04 21:26:46 +0900
committerMasaki Hara <ackie.h.gmai@gmail.com>2017-07-04 21:26:46 +0900
commit728d26c8861265c15d997117be31ca2b9d3fa44b (patch)
tree348a2c6b1ca125b686bbe3af014b2cd9693c70aa
parent01b6c9459ca3f7857f211aa47f8fbf3b52ed1c47 (diff)
downloadrust-728d26c8861265c15d997117be31ca2b9d3fa44b.tar.gz
rust-728d26c8861265c15d997117be31ca2b9d3fa44b.zip
Add a test for unsized tuple impls.
-rw-r--r--src/test/run-pass/unsized-tuple-impls.rs29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/test/run-pass/unsized-tuple-impls.rs b/src/test/run-pass/unsized-tuple-impls.rs
new file mode 100644
index 00000000000..591b19f89e8
--- /dev/null
+++ b/src/test/run-pass/unsized-tuple-impls.rs
@@ -0,0 +1,29 @@
+// Copyright 2017 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.
+
+#![feature(unsized_tuple_coercion)]
+
+use std::collections::HashSet;
+
+fn main() {
+    let x : &(i32, i32, [i32]) = &(0, 1, [2, 3]);
+    let y : &(i32, i32, [i32]) = &(0, 1, [2, 3, 4]);
+    let mut a = [y, x];
+    a.sort();
+    assert_eq!(a, [x, y]);
+
+    assert_eq!(&format!("{:?}", a), "[(0, 1, [2, 3]), (0, 1, [2, 3, 4])]");
+
+    let mut h = HashSet::new();
+    h.insert(x);
+    h.insert(y);
+    assert!(h.contains(x));
+    assert!(h.contains(y));
+}