]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-7013.stderr
Auto merge of #96605 - Urgau:string-retain-codegen, r=thomcc
[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   --> $DIR/issue-7013.rs:10:8
11    |
12 LL | struct B {
13    |        ^
14    = note: required for the cast 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`.