]> git.lizzy.rs Git - rust.git/blobdiff - src/test/compile-fail/marker-no-send.rs
rollup merge of #17355 : gamazeps/issue17210
[rust.git] / src / test / compile-fail / marker-no-send.rs
index 101959035eb9b6c59e74c5ac48f07f0e069746cb..813e2548398b51304ab2ee03558c32a12350b9b8 100644 (file)
@@ -14,5 +14,5 @@ fn foo<P:Send>(p: P) { }
 
 fn main()
 {
-    foo(marker::NoSend); //~ ERROR does not fulfill `Send`
+    foo(marker::NoSend); //~ ERROR the trait `core::kinds::Send` is not implemented
 }