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