about summary refs log tree commit diff
path: root/src/test/compile-fail/no_send-rc.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/no_send-rc.rs')
-rw-r--r--src/test/compile-fail/no_send-rc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/no_send-rc.rs b/src/test/compile-fail/no_send-rc.rs
index b5c572b17dd..23926394a23 100644
--- a/src/test/compile-fail/no_send-rc.rs
+++ b/src/test/compile-fail/no_send-rc.rs
@@ -15,5 +15,5 @@ fn bar<T: Send>(_: T) {}
 fn main() {
     let x = Rc::new(5);
     bar(x);
-    //~^ ERROR `core::marker::Send` is not implemented
+    //~^ ERROR `std::marker::Send` is not implemented
 }