]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/no_send-struct.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / compile-fail / no_send-struct.rs
index 7f16db0ba947be19ea11269408e9f2a68458763b..b2ca4f9f5db16bb76a749cf8478733ded2a68b5e 100644 (file)
@@ -23,5 +23,5 @@ fn bar<T: Send>(_: T) {}
 fn main() {
     let x = Foo { a: 5 };
     bar(x);
-    //~^ ERROR the trait `core::marker::Send` is not implemented
+    //~^ ERROR `Foo: std::marker::Send` is not satisfied
 }