blob: 1ad4b6a1517373116c32d9cee19ca9faef4c2104 [file] [log] [blame]
error[E0277]: `NoSync` cannot be shared between threads safely
--> $DIR/mutable-enum-indirect.rs:27:5
|
LL | bar(&x);
| ^^^ `NoSync` cannot be shared between threads safely
|
= help: within `&Foo`, the trait `std::marker::Sync` is not implemented for `NoSync`
= note: required because it appears within the type `Foo`
= note: required because it appears within the type `&Foo`
note: required by `bar`
--> $DIR/mutable-enum-indirect.rs:23:1
|
LL | fn bar<T: Sync>(_: T) {}
| ^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.