]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/error-should-say-copy-not-pod.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / compile-fail / error-should-say-copy-not-pod.rs
index d79b3f472d06b70bd53436e6990058290ae86071..8b1e2fc19663dc448d87583e81eff3d2fd3b8919 100644 (file)
@@ -13,5 +13,5 @@
 fn check_bound<T:Copy>(_: T) {}
 
 fn main() {
-    check_bound("nocopy".to_string()); //~ ERROR the trait `core::marker::Copy` is not implemented
+    check_bound("nocopy".to_string()); //~ ERROR : std::marker::Copy` is not satisfied
 }