about summary refs log tree commit diff
path: root/src/test/run-pass/deriving-meta.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/deriving-meta.rs')
-rw-r--r--src/test/run-pass/deriving-meta.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/deriving-meta.rs b/src/test/run-pass/deriving-meta.rs
index efb202028f3..aef671ba757 100644
--- a/src/test/run-pass/deriving-meta.rs
+++ b/src/test/run-pass/deriving-meta.rs
@@ -17,7 +17,7 @@ struct Foo {
 }
 
 pub fn main() {
-    use core::hash::{Hash, HashUtil}; // necessary for IterBytes check
+    use std::hash::{Hash, HashUtil}; // necessary for IterBytes check
 
     let a = Foo {bar: 4, baz: -3};