]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/generic-associated-types/issue-68641-check-gat-bounds.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / generic-associated-types / issue-68641-check-gat-bounds.rs
index 71f9b2967dc5838c8178170a7f44fbabf9c0e553..0020887eaea90165e0c9b0cae30674b5c4272fc9 100644 (file)
@@ -13,7 +13,7 @@ trait UnsafeCopy {
 
 impl<T> UnsafeCopy for T {
     type Item<'a> = T;
-    //~^ ERROR the trait bound `T: std::marker::Copy` is not satisfied
+    //~^ ERROR the trait bound `T: Copy` is not satisfied
 }
 
 fn main() {