blob: d671b8eb7549b802d6c249bfa1ab7a551d838d2f [file] [log] [blame]
error[E0277]: `MyNotSync` cannot be shared between threads safely
--> $DIR/typeck-default-trait-impl-negation-sync.rs:33:15
|
LL | fn is_sync<T: Sync>() {}
| ---- required by this bound in `is_sync`
...
LL | is_sync::<MyNotSync>();
| ^^^^^^^^^ `MyNotSync` cannot be shared between threads safely
|
= help: the trait `std::marker::Sync` is not implemented for `MyNotSync`
error[E0277]: `std::cell::UnsafeCell<u8>` cannot be shared between threads safely
--> $DIR/typeck-default-trait-impl-negation-sync.rs:36:5
|
LL | fn is_sync<T: Sync>() {}
| ---- required by this bound in `is_sync`
...
LL | is_sync::<MyTypeWUnsafe>();
| ^^^^^^^^^^^^^^^^^^^^^^^^ `std::cell::UnsafeCell<u8>` cannot be shared between threads safely
|
= help: within `MyTypeWUnsafe`, the trait `std::marker::Sync` is not implemented for `std::cell::UnsafeCell<u8>`
= note: required because it appears within the type `MyTypeWUnsafe`
error[E0277]: `Managed` cannot be shared between threads safely
--> $DIR/typeck-default-trait-impl-negation-sync.rs:39:5
|
LL | fn is_sync<T: Sync>() {}
| ---- required by this bound in `is_sync`
...
LL | is_sync::<MyTypeManaged>();
| ^^^^^^^^^^^^^^^^^^^^^^^^ `Managed` cannot be shared between threads safely
|
= help: within `MyTypeManaged`, the trait `std::marker::Sync` is not implemented for `Managed`
= note: required because it appears within the type `MyTypeManaged`
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0277`.