]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/sync-send-iterators-in-libcollections.rs
rustdoc: Replace no-pretty-expanded with pretty-expanded
[rust.git] / src / test / run-pass / sync-send-iterators-in-libcollections.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // pretty-expanded FIXME #23616
12
13 #![allow(unused_mut)]
14 #![feature(collections)]
15
16 extern crate collections;
17
18 use collections::BinaryHeap;
19 use collections::{BitSet, BitVec};
20 use collections::{BTreeMap, BTreeSet};
21 use collections::EnumSet;
22 use collections::LinkedList;
23 use collections::Vec;
24 use collections::VecDeque;
25 use collections::VecMap;
26
27 use collections::Bound::Included;
28 use collections::enum_set::CLike;
29 use std::mem;
30
31 fn is_sync<T>(_: T) where T: Sync {}
32 fn is_send<T>(_: T) where T: Send {}
33
34 macro_rules! all_sync_send {
35     ($ctor:expr, $($iter:ident),+) => ({
36         $(
37             let mut x = $ctor;
38             is_sync(x.$iter());
39             let mut y = $ctor;
40             is_send(y.$iter());
41         )+
42     })
43 }
44
45 macro_rules! is_sync_send {
46     ($ctor:expr, $iter:ident($($param:expr),+)) => ({
47         let mut x = $ctor;
48         is_sync(x.$iter($( $param ),+));
49         let mut y = $ctor;
50         is_send(y.$iter($( $param ),+));
51     })
52 }
53
54 fn main() {
55     // The iterator "generator" list should exhaust what corresponding
56     // implementations have where `Sync` and `Send` semantics apply.
57     all_sync_send!(BinaryHeap::<usize>::new(), iter, drain, into_iter);
58
59     all_sync_send!(BitVec::new(), iter);
60
61     all_sync_send!(BitSet::new(), iter);
62     is_sync_send!(BitSet::new(), union(&BitSet::new()));
63     is_sync_send!(BitSet::new(), intersection(&BitSet::new()));
64     is_sync_send!(BitSet::new(), difference(&BitSet::new()));
65     is_sync_send!(BitSet::new(), symmetric_difference(&BitSet::new()));
66
67     all_sync_send!(BTreeMap::<usize, usize>::new(), iter, iter_mut, into_iter, keys, values);
68     is_sync_send!(BTreeMap::<usize, usize>::new(), range(Included(&0), Included(&9)));
69     is_sync_send!(BTreeMap::<usize, usize>::new(), range_mut(Included(&0), Included(&9)));
70
71     all_sync_send!(BTreeSet::<usize>::new(), iter, into_iter);
72     is_sync_send!(BTreeSet::<usize>::new(), range(Included(&0), Included(&9)));
73     is_sync_send!(BTreeSet::<usize>::new(), difference(&BTreeSet::<usize>::new()));
74     is_sync_send!(BTreeSet::<usize>::new(), symmetric_difference(&BTreeSet::<usize>::new()));
75     is_sync_send!(BTreeSet::<usize>::new(), intersection(&BTreeSet::<usize>::new()));
76     is_sync_send!(BTreeSet::<usize>::new(), union(&BTreeSet::<usize>::new()));
77
78     all_sync_send!(LinkedList::<usize>::new(), iter, iter_mut, into_iter);
79
80     #[derive(Copy)]
81     #[repr(usize)]
82     #[allow(dead_code)]
83     enum Foo { A, B, C }
84     impl CLike for Foo {
85         fn to_usize(&self) -> usize {
86             *self as usize
87         }
88
89         fn from_usize(v: usize) -> Foo {
90             unsafe { mem::transmute(v) }
91         }
92     }
93     all_sync_send!(EnumSet::<Foo>::new(), iter);
94
95     all_sync_send!(VecDeque::<usize>::new(), iter, iter_mut, drain, into_iter);
96
97     all_sync_send!(VecMap::<usize>::new(), iter, iter_mut, drain, into_iter, keys, values);
98
99     all_sync_send!(Vec::<usize>::new(), into_iter, drain);
100 }