]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/no_send-struct.stderr
:arrow_up: rust-analyzer
[rust.git] / src / test / ui / traits / no_send-struct.stderr
1 error[E0277]: `Foo` cannot be sent between threads safely
2   --> $DIR/no_send-struct.rs:15:9
3    |
4 LL |     bar(x);
5    |     --- ^ `Foo` cannot be sent between threads safely
6    |     |
7    |     required by a bound introduced by this call
8    |
9    = help: the trait `Send` is not implemented for `Foo`
10 note: required by a bound in `bar`
11   --> $DIR/no_send-struct.rs:11:11
12    |
13 LL | fn bar<T: Send>(_: T) {}
14    |           ^^^^ required by this bound in `bar`
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0277`.