]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/where-clauses/where-clause-constraints-are-local-for-inherent-impl.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / where-clauses / where-clause-constraints-are-local-for-inherent-impl.rs
index e55316bb92ee92d2ef49a9d4ada5f53eec0ca51a..0e8bb61a79b6ba96c91a2e8f76ff39b03db25f2b 100644 (file)
@@ -11,7 +11,7 @@ impl<T> Foo<T> {
 
     fn fails_copy(self) {
         require_copy(self.x);
-        //~^ ERROR the trait bound `T: std::marker::Copy` is not satisfied
+        //~^ ERROR the trait bound `T: Copy` is not satisfied
     }
 }