]> git.lizzy.rs Git - rust.git/blob - src/test/ui/no_share-struct.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / no_share-struct.stderr
1 error[E0277]: `Foo` cannot be shared between threads safely
2   --> $DIR/no_share-struct.rs:22:5
3    |
4 LL |     bar(x);
5    |     ^^^ `Foo` cannot be shared between threads safely
6    |
7    = help: the trait `std::marker::Sync` is not implemented for `Foo`
8 note: required by `bar`
9   --> $DIR/no_share-struct.rs:18:1
10    |
11 LL | fn bar<T: Sync>(_: T) {}
12    | ^^^^^^^^^^^^^^^^^^^^^
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0277`.