]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/sync-send-iterators-in-libcollections.rs
Merge remote-tracking branch 'rust-lang/master' into iss29367-windows-docs
[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 #![allow(warnings)]
12 #![feature(collections)]
13 #![feature(drain, collections_bound, btree_range, vecmap)]
14
15 extern crate collections;
16
17 use collections::BinaryHeap;
18 use collections::{BTreeMap, BTreeSet};
19 use collections::LinkedList;
20 use collections::String;
21 use collections::Vec;
22 use collections::VecDeque;
23 use std::collections::HashMap;
24 use std::collections::HashSet;
25
26 use collections::Bound::Included;
27 use std::mem;
28
29 fn is_sync<T>(_: T) where T: Sync {}
30 fn is_send<T>(_: T) where T: Send {}
31
32 macro_rules! all_sync_send {
33     ($ctor:expr, $($iter:ident),+) => ({
34         $(
35             let mut x = $ctor;
36             is_sync(x.$iter());
37             let mut y = $ctor;
38             is_send(y.$iter());
39         )+
40     })
41 }
42
43 macro_rules! is_sync_send {
44     ($ctor:expr, $iter:ident($($param:expr),+)) => ({
45         let mut x = $ctor;
46         is_sync(x.$iter($( $param ),+));
47         let mut y = $ctor;
48         is_send(y.$iter($( $param ),+));
49     })
50 }
51
52 fn main() {
53     // The iterator "generator" list should exhaust what corresponding
54     // implementations have where `Sync` and `Send` semantics apply.
55     all_sync_send!(BinaryHeap::<usize>::new(), iter, drain, into_iter);
56
57     all_sync_send!(BTreeMap::<usize, usize>::new(), iter, iter_mut, into_iter, keys, values);
58     is_sync_send!(BTreeMap::<usize, usize>::new(), range((Included(&0), Included(&9))));
59     is_sync_send!(BTreeMap::<usize, usize>::new(), range_mut((Included(&0), Included(&9))));
60
61     all_sync_send!(BTreeSet::<usize>::new(), iter, into_iter);
62     is_sync_send!(BTreeSet::<usize>::new(), range((Included(&0), Included(&9))));
63     is_sync_send!(BTreeSet::<usize>::new(), difference(&BTreeSet::<usize>::new()));
64     is_sync_send!(BTreeSet::<usize>::new(), symmetric_difference(&BTreeSet::<usize>::new()));
65     is_sync_send!(BTreeSet::<usize>::new(), intersection(&BTreeSet::<usize>::new()));
66     is_sync_send!(BTreeSet::<usize>::new(), union(&BTreeSet::<usize>::new()));
67
68     all_sync_send!(HashMap::<usize, usize>::new(), iter, iter_mut, drain, into_iter, keys, values);
69     all_sync_send!(HashSet::<usize>::new(), iter, drain, into_iter);
70     is_sync_send!(HashSet::<usize>::new(), difference(&HashSet::<usize>::new()));
71     is_sync_send!(HashSet::<usize>::new(), symmetric_difference(&HashSet::<usize>::new()));
72     is_sync_send!(HashSet::<usize>::new(), intersection(&HashSet::<usize>::new()));
73     is_sync_send!(HashSet::<usize>::new(), union(&HashSet::<usize>::new()));
74
75     all_sync_send!(LinkedList::<usize>::new(), iter, iter_mut, into_iter);
76
77     all_sync_send!(VecDeque::<usize>::new(), iter, iter_mut, into_iter);
78     is_sync_send!(VecDeque::<usize>::new(), drain(..));
79
80     all_sync_send!(Vec::<usize>::new(), into_iter);
81     is_sync_send!(Vec::<usize>::new(), drain(..));
82     is_sync_send!(String::new(), drain(..));
83 }