]> 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 903532e9bc80ac325af1e4f4b34b07783da83468..e096fb3bbaef723a60aea7d1d43b5656cbe14de4 100644 (file)
@@ -18,8 +18,8 @@
 use std::collections::HashMap;
 use std::collections::HashSet;
 
-use std::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 {}