]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-7013.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-7013.stderr
1 error[E0277]: `std::rc::Rc<std::cell::RefCell<A>>` cannot be sent between threads safely
2   --> $DIR/issue-7013.rs:36:19
3    |
4 LL |     let a = A {v: box B{v: None} as Box<Foo+Send>};
5    |                   ^^^^^^^^^^^^^^ `std::rc::Rc<std::cell::RefCell<A>>` cannot be sent between threads safely
6    |
7    = help: within `B`, the trait `std::marker::Send` is not implemented for `std::rc::Rc<std::cell::RefCell<A>>`
8    = note: required because it appears within the type `std::option::Option<std::rc::Rc<std::cell::RefCell<A>>>`
9    = note: required because it appears within the type `B`
10    = note: required for the cast to the object type `dyn Foo + std::marker::Send`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0277`.