2015-02-25 06:52:18 -06:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-02-25 06:52:18 -06:00
|
|
|
#![allow(unused_mut)]
|
|
|
|
#![feature(collections)]
|
2015-04-27 12:37:13 -05:00
|
|
|
#![feature(collections_drain)]
|
2015-02-25 06:52:18 -06:00
|
|
|
|
|
|
|
extern crate collections;
|
|
|
|
|
|
|
|
use collections::BinaryHeap;
|
|
|
|
use collections::{BitSet, BitVec};
|
|
|
|
use collections::{BTreeMap, BTreeSet};
|
|
|
|
use collections::EnumSet;
|
|
|
|
use collections::LinkedList;
|
|
|
|
use collections::Vec;
|
|
|
|
use collections::VecDeque;
|
|
|
|
use collections::VecMap;
|
|
|
|
|
|
|
|
use collections::Bound::Included;
|
|
|
|
use collections::enum_set::CLike;
|
|
|
|
use std::mem;
|
|
|
|
|
|
|
|
fn is_sync<T>(_: T) where T: Sync {}
|
|
|
|
fn is_send<T>(_: T) where T: Send {}
|
|
|
|
|
|
|
|
macro_rules! all_sync_send {
|
|
|
|
($ctor:expr, $($iter:ident),+) => ({
|
|
|
|
$(
|
|
|
|
let mut x = $ctor;
|
|
|
|
is_sync(x.$iter());
|
|
|
|
let mut y = $ctor;
|
|
|
|
is_send(y.$iter());
|
|
|
|
)+
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! is_sync_send {
|
|
|
|
($ctor:expr, $iter:ident($($param:expr),+)) => ({
|
|
|
|
let mut x = $ctor;
|
|
|
|
is_sync(x.$iter($( $param ),+));
|
|
|
|
let mut y = $ctor;
|
|
|
|
is_send(y.$iter($( $param ),+));
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// The iterator "generator" list should exhaust what corresponding
|
|
|
|
// implementations have where `Sync` and `Send` semantics apply.
|
|
|
|
all_sync_send!(BinaryHeap::<usize>::new(), iter, drain, into_iter);
|
|
|
|
|
|
|
|
all_sync_send!(BitVec::new(), iter);
|
|
|
|
|
|
|
|
all_sync_send!(BitSet::new(), iter);
|
|
|
|
is_sync_send!(BitSet::new(), union(&BitSet::new()));
|
|
|
|
is_sync_send!(BitSet::new(), intersection(&BitSet::new()));
|
|
|
|
is_sync_send!(BitSet::new(), difference(&BitSet::new()));
|
|
|
|
is_sync_send!(BitSet::new(), symmetric_difference(&BitSet::new()));
|
|
|
|
|
|
|
|
all_sync_send!(BTreeMap::<usize, usize>::new(), iter, iter_mut, into_iter, keys, values);
|
|
|
|
is_sync_send!(BTreeMap::<usize, usize>::new(), range(Included(&0), Included(&9)));
|
|
|
|
is_sync_send!(BTreeMap::<usize, usize>::new(), range_mut(Included(&0), Included(&9)));
|
|
|
|
|
|
|
|
all_sync_send!(BTreeSet::<usize>::new(), iter, into_iter);
|
|
|
|
is_sync_send!(BTreeSet::<usize>::new(), range(Included(&0), Included(&9)));
|
|
|
|
is_sync_send!(BTreeSet::<usize>::new(), difference(&BTreeSet::<usize>::new()));
|
|
|
|
is_sync_send!(BTreeSet::<usize>::new(), symmetric_difference(&BTreeSet::<usize>::new()));
|
|
|
|
is_sync_send!(BTreeSet::<usize>::new(), intersection(&BTreeSet::<usize>::new()));
|
|
|
|
is_sync_send!(BTreeSet::<usize>::new(), union(&BTreeSet::<usize>::new()));
|
|
|
|
|
|
|
|
all_sync_send!(LinkedList::<usize>::new(), iter, iter_mut, into_iter);
|
|
|
|
|
2015-03-30 08:38:27 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-02-25 06:52:18 -06:00
|
|
|
#[repr(usize)]
|
|
|
|
#[allow(dead_code)]
|
|
|
|
enum Foo { A, B, C }
|
|
|
|
impl CLike for Foo {
|
|
|
|
fn to_usize(&self) -> usize {
|
|
|
|
*self as usize
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_usize(v: usize) -> Foo {
|
|
|
|
unsafe { mem::transmute(v) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
all_sync_send!(EnumSet::<Foo>::new(), iter);
|
|
|
|
|
|
|
|
all_sync_send!(VecDeque::<usize>::new(), iter, iter_mut, drain, into_iter);
|
|
|
|
|
|
|
|
all_sync_send!(VecMap::<usize>::new(), iter, iter_mut, drain, into_iter, keys, values);
|
|
|
|
|
2015-04-27 12:37:13 -05:00
|
|
|
all_sync_send!(Vec::<usize>::new(), into_iter);
|
|
|
|
is_sync_send!(Vec::<usize>::new(), drain(..));
|
2015-02-25 06:52:18 -06:00
|
|
|
}
|