about summary refs log tree commit diff
path: root/src/libcore/owned.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcore/owned.rs')
-rw-r--r--src/libcore/owned.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/owned.rs b/src/libcore/owned.rs
index 3b839e5a9e0..486ce44147a 100644
--- a/src/libcore/owned.rs
+++ b/src/libcore/owned.rs
@@ -10,7 +10,7 @@
 
 //! Operations on unique pointer types
 
-use cmp::{Eq, Ord};
+#[cfg(notest)] use cmp::{Eq, Ord};
 
 #[cfg(notest)]
 impl<T:Eq> Eq for ~T {