]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type-alias-impl-trait/auto-trait-leakage2.stderr
Auto merge of #95454 - randomicon00:fix95444, r=wesleywiser
[rust.git] / src / test / ui / type-alias-impl-trait / auto-trait-leakage2.stderr
1 error[E0277]: `Rc<u32>` cannot be sent between threads safely
2   --> $DIR/auto-trait-leakage2.rs:17:13
3    |
4 LL |     type Foo = impl std::fmt::Debug;
5    |                -------------------- within this `Foo`
6 ...
7 LL |     is_send(m::foo());
8    |     ------- ^^^^^^^^ `Rc<u32>` cannot be sent between threads safely
9    |     |
10    |     required by a bound introduced by this call
11    |
12    = help: within `Foo`, the trait `Send` is not implemented for `Rc<u32>`
13    = note: required because it appears within the type `Foo`
14 note: required by a bound in `is_send`
15   --> $DIR/auto-trait-leakage2.rs:14:15
16    |
17 LL | fn is_send<T: Send>(_: T) {}
18    |               ^^^^ required by this bound in `is_send`
19
20 error: aborting due to previous error
21
22 For more information about this error, try `rustc --explain E0277`.