]> git.lizzy.rs Git - rust.git/blob - src/test/ui/mutexguard-sync.stderr
Rollup merge of #57107 - mjbshaw:thread_local_test, r=nikomatsakis
[rust.git] / src / test / ui / mutexguard-sync.stderr
1 error[E0277]: `std::cell::Cell<i32>` cannot be shared between threads safely
2   --> $DIR/mutexguard-sync.rs:11:5
3    |
4 LL |     test_sync(guard);
5    |     ^^^^^^^^^ `std::cell::Cell<i32>` cannot be shared between threads safely
6    |
7    = help: the trait `std::marker::Sync` is not implemented for `std::cell::Cell<i32>`
8    = note: required because of the requirements on the impl of `std::marker::Sync` for `std::sync::MutexGuard<'_, std::cell::Cell<i32>>`
9 note: required by `test_sync`
10   --> $DIR/mutexguard-sync.rs:5:1
11    |
12 LL | fn test_sync<T: Sync>(_t: T) {}
13    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0277`.