]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/sync-send-iterators-in-libcollections.rs
Move alloc::Bound to {core,std}::ops
[rust.git] / src / test / run-pass / sync-send-iterators-in-libcollections.rs
index ea154590deef0af432ff2ce192a7cb76ee60be33..e096fb3bbaef723a60aea7d1d43b5656cbe14de4 100644 (file)
@@ -9,22 +9,17 @@
 // except according to those terms.
 
 #![allow(warnings)]
-#![feature(collections)]
 #![feature(drain, collections_bound, btree_range, vecmap)]
 
-extern crate collections;
-
-use collections::BinaryHeap;
-use collections::{BTreeMap, BTreeSet};
-use collections::LinkedList;
-use collections::String;
-use collections::Vec;
-use collections::VecDeque;
+use std::collections::BinaryHeap;
+use std::collections::{BTreeMap, BTreeSet};
+use std::collections::LinkedList;
+use std::collections::VecDeque;
 use std::collections::HashMap;
 use std::collections::HashSet;
 
-use collections::Bound::Included;
 use std::mem;
+use std::ops::Bound::Included;
 
 fn is_sync<T>(_: T) where T: Sync {}
 fn is_send<T>(_: T) where T: Send {}