]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/not-clone-closure.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / not-clone-closure.rs
index 134d52c495c66e9f6bb26d5c78f1a97a23c62e9c..25635bc833181f9253575d66a9e0ed573d9e5e69 100644 (file)
@@ -8,5 +8,5 @@ fn main() {
         println!("Hello {}", a.0);
     };
 
-    let hello = hello.clone(); //~ ERROR the trait bound `S: std::clone::Clone` is not satisfied
+    let hello = hello.clone(); //~ ERROR the trait bound `S: Clone` is not satisfied
 }