]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-7013.stderr
Auto merge of #78066 - bugadani:wat, r=jonas-schievink
[rust.git] / src / test / ui / issues / issue-7013.stderr
1 error[E0277]: `Rc<RefCell<A>>` cannot be sent between threads safely
2   --> $DIR/issue-7013.rs:26:19
3    |
4 LL |     let a = A {v: box 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    = note: required for the cast to the object type `dyn Foo + Send`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0277`.