]> git.lizzy.rs Git - rust.git/blob - src/test/ui/builtin-superkinds/builtin-superkinds-simple.stderr
Rollup merge of #57107 - mjbshaw:thread_local_test, r=nikomatsakis
[rust.git] / src / test / ui / builtin-superkinds / builtin-superkinds-simple.stderr
1 error[E0277]: `std::rc::Rc<i8>` cannot be sent between threads safely
2   --> $DIR/builtin-superkinds-simple.rs:6:6
3    |
4 LL | impl Foo for std::rc::Rc<i8> { }
5    |      ^^^ `std::rc::Rc<i8>` cannot be sent between threads safely
6    |
7    = help: the trait `std::marker::Send` is not implemented for `std::rc::Rc<i8>`
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0277`.