]> git.lizzy.rs Git - rust.git/blob - tests/ui/no_share-enum.stderr
Rollup merge of #106477 - Nathan-Fenner:nathanf/refined-error-span-trait-impl, r...
[rust.git] / tests / ui / no_share-enum.stderr
1 error[E0277]: `NoSync` cannot be shared between threads safely
2   --> $DIR/no_share-enum.rs:14:9
3    |
4 LL |     bar(x);
5    |     --- ^ `NoSync` cannot be shared between threads safely
6    |     |
7    |     required by a bound introduced by this call
8    |
9    = help: within `Foo`, the trait `Sync` is not implemented for `NoSync`
10 note: required because it appears within the type `Foo`
11   --> $DIR/no_share-enum.rs:8:6
12    |
13 LL | enum Foo { A(NoSync) }
14    |      ^^^
15 note: required by a bound in `bar`
16   --> $DIR/no_share-enum.rs:10:11
17    |
18 LL | fn bar<T: Sync>(_: T) {}
19    |           ^^^^ required by this bound in `bar`
20
21 error: aborting due to previous error
22
23 For more information about this error, try `rustc --explain E0277`.