@@ -26,15 +26,15 @@ fn send<T: Send>(_: T) {}
2626fn main ( ) {
2727 send ( before ( ) ) ;
2828 //~^ ERROR the trait bound `std::rc::Rc<std::cell::Cell<i32>>: std::marker::Send` is not satisfied
29- //~| NOTE trait `std::rc::Rc<std::cell::Cell<i32>>: std::marker::Send` not satisfied
29+ //~| NOTE the trait `std::marker::Send` is not implemented for `std:: rc::Rc<std::cell::Cell<i32>>`
3030 //~| NOTE `std::rc::Rc<std::cell::Cell<i32>>` cannot be sent between threads safely
3131 //~| NOTE required because it appears within the type `[closure
3232 //~| NOTE required because it appears within the type `impl std::ops::Fn<(i32,)>`
3333 //~| NOTE required by `send`
3434
3535 send ( after ( ) ) ;
3636 //~^ ERROR the trait bound `std::rc::Rc<std::cell::Cell<i32>>: std::marker::Send` is not satisfied
37- //~| NOTE trait `std::rc::Rc<std::cell::Cell<i32>>: std::marker::Send` not satisfied
37+ //~| NOTE the trait `std::marker::Send` is not implemented for `std:: rc::Rc<std::cell::Cell<i32>>`
3838 //~| NOTE `std::rc::Rc<std::cell::Cell<i32>>` cannot be sent between threads safely
3939 //~| NOTE required because it appears within the type `[closure
4040 //~| NOTE required because it appears within the type `impl std::ops::Fn<(i32,)>`
@@ -54,7 +54,7 @@ fn after() -> impl Fn(i32) {
5454fn cycle1 ( ) -> impl Clone {
5555 send ( cycle2 ( ) . clone ( ) ) ;
5656 //~^ ERROR the trait bound `std::rc::Rc<std::string::String>: std::marker::Send` is not satisfied
57- //~| NOTE trait `std::rc::Rc<std::string::String>: std::marker::Send` not satisfied
57+ //~| NOTE the trait `std::marker::Send` is not implemented for `std:: rc::Rc<std::string::String>`
5858 //~| NOTE `std::rc::Rc<std::string::String>` cannot be sent between threads safely
5959 //~| NOTE required because it appears within the type `impl std::clone::Clone`
6060 //~| NOTE required by `send`
@@ -65,7 +65,7 @@ fn cycle1() -> impl Clone {
6565fn cycle2 ( ) -> impl Clone {
6666 send ( cycle1 ( ) . clone ( ) ) ;
6767 //~^ ERROR the trait bound `std::rc::Rc<std::cell::Cell<i32>>: std::marker::Send` is not satisfied
68- //~| NOTE trait `std::rc::Rc<std::cell::Cell<i32>>: std::marker::Send` not satisfied
68+ //~| NOTE the trait `std::marker::Send` is not implemented for `std:: rc::Rc<std::cell::Cell<i32>>`
6969 //~| NOTE `std::rc::Rc<std::cell::Cell<i32>>` cannot be sent between threads safely
7070 //~| NOTE required because it appears within the type `impl std::clone::Clone`
7171 //~| NOTE required by `send`
0 commit comments