about summary refs log tree commit diff
path: root/src/test/compile-fail/where-clause-constraints-are-local-for-inherent-impl.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/where-clause-constraints-are-local-for-inherent-impl.rs')
-rw-r--r--src/test/compile-fail/where-clause-constraints-are-local-for-inherent-impl.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/where-clause-constraints-are-local-for-inherent-impl.rs b/src/test/compile-fail/where-clause-constraints-are-local-for-inherent-impl.rs
index 74342cfedd3..354407bc002 100644
--- a/src/test/compile-fail/where-clause-constraints-are-local-for-inherent-impl.rs
+++ b/src/test/compile-fail/where-clause-constraints-are-local-for-inherent-impl.rs
@@ -21,7 +21,7 @@ impl<T> Foo<T> {
 
     fn fails_copy(self) {
         require_copy(self.x);
-        //~^ ERROR the trait `core::marker::Copy` is not implemented for the type `T`
+        //~^ ERROR the trait `std::marker::Copy` is not implemented for the type `T`
     }
 }