]> git.proxmox.com Git - rustc.git/blame - src/test/ui/builtin-superkinds/builtin-superkinds-simple.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / builtin-superkinds / builtin-superkinds-simple.stderr
CommitLineData
1b1a35ee 1error[E0277]: `Rc<i8>` cannot be sent between threads safely
0731742a 2 --> $DIR/builtin-superkinds-simple.rs:6:6
b7449926 3 |
ba9703b0
XL
4LL | trait Foo : Send { }
5 | ---- required by this bound in `Foo`
6LL |
b7449926 7LL | impl Foo for std::rc::Rc<i8> { }
1b1a35ee 8 | ^^^ `Rc<i8>` cannot be sent between threads safely
b7449926 9 |
1b1a35ee 10 = help: the trait `Send` is not implemented for `Rc<i8>`
b7449926
XL
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0277`.