]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/builtin-superkinds-double-superkind.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / compile-fail / builtin-superkinds-double-superkind.rs
index cd215a7373780170e02eed6cb3e3aaf30ac787b6..8d5d8e8dc9b7dbec63d832211807dd4480f821bb 100644 (file)
@@ -13,9 +13,9 @@
 
 trait Foo : Send+Sync { }
 
-impl <T: Sync+'static> Foo for (T,) { } //~ ERROR the trait `core::marker::Send` is not implemented
+impl <T: Sync+'static> Foo for (T,) { } //~ ERROR `T: std::marker::Send` is not satisfied
 
-impl <T: Send> Foo for (T,T) { } //~ ERROR the trait `core::marker::Sync` is not implemented
+impl <T: Send> Foo for (T,T) { } //~ ERROR `T: std::marker::Sync` is not satisfied
 
 impl <T: Send+Sync> Foo for (T,T,T) { } // (ok)