]> git.lizzy.rs Git - rust.git/blob - tests/ui/traits/issue-7013.stderr
Merge commit '7f27e2e74ef957baa382dc05cf08df6368165c74' into clippyup
[rust.git] / tests / ui / traits / issue-7013.stderr
1 error[E0277]: `Rc<RefCell<A>>` cannot be sent between threads safely
2   --> $DIR/issue-7013.rs:24:19
3    |
4 LL |     let a = A {v: Box::new(B{v: None}) as Box<dyn Foo + Send>};
5    |                   ^^^^^^^^^^^^^^^^^^^^ `Rc<RefCell<A>>` cannot be sent between threads safely
6    |
7    = help: within `B`, the trait `Send` is not implemented for `Rc<RefCell<A>>`
8    = note: required because it appears within the type `Option<Rc<RefCell<A>>>`
9 note: required because it appears within the type `B`
10   --> $DIR/issue-7013.rs:8:8
11    |
12 LL | struct B {
13    |        ^
14    = note: required for the cast from `B` to the object type `dyn Foo + Send`
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0277`.