about summary refs log tree commit diff
path: root/src/test/compile-fail/no_share-struct.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/no_share-struct.rs')
-rw-r--r--src/test/compile-fail/no_share-struct.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/no_share-struct.rs b/src/test/compile-fail/no_share-struct.rs
index b5ccceb3b2a..74549286f7b 100644
--- a/src/test/compile-fail/no_share-struct.rs
+++ b/src/test/compile-fail/no_share-struct.rs
@@ -20,5 +20,5 @@ fn bar<T: Sync>(_: T) {}
 fn main() {
     let x = Foo { a: 5 };
     bar(x);
-    //~^ ERROR the trait `core::marker::Sync` is not implemented
+    //~^ ERROR the trait `std::marker::Sync` is not implemented
 }