]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/mutex_atomic.stderr
Auto merge of #76019 - pietroalbini:rollup-1tkgdnd, r=pietroalbini
[rust.git] / src / tools / clippy / tests / ui / mutex_atomic.stderr
1 error: Consider using an `AtomicBool` instead of a `Mutex` here. If you just want the locking behavior and not the internal type, consider using `Mutex<()>`.
2   --> $DIR/mutex_atomic.rs:6:5
3    |
4 LL |     Mutex::new(true);
5    |     ^^^^^^^^^^^^^^^^
6    |
7    = note: `-D clippy::mutex-atomic` implied by `-D warnings`
8
9 error: Consider using an `AtomicUsize` instead of a `Mutex` here. If you just want the locking behavior and not the internal type, consider using `Mutex<()>`.
10   --> $DIR/mutex_atomic.rs:7:5
11    |
12 LL |     Mutex::new(5usize);
13    |     ^^^^^^^^^^^^^^^^^^
14
15 error: Consider using an `AtomicIsize` instead of a `Mutex` here. If you just want the locking behavior and not the internal type, consider using `Mutex<()>`.
16   --> $DIR/mutex_atomic.rs:8:5
17    |
18 LL |     Mutex::new(9isize);
19    |     ^^^^^^^^^^^^^^^^^^
20
21 error: Consider using an `AtomicPtr` instead of a `Mutex` here. If you just want the locking behavior and not the internal type, consider using `Mutex<()>`.
22   --> $DIR/mutex_atomic.rs:10:5
23    |
24 LL |     Mutex::new(&x as *const u32);
25    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
26
27 error: Consider using an `AtomicPtr` instead of a `Mutex` here. If you just want the locking behavior and not the internal type, consider using `Mutex<()>`.
28   --> $DIR/mutex_atomic.rs:11:5
29    |
30 LL |     Mutex::new(&mut x as *mut u32);
31    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
32
33 error: Consider using an `AtomicUsize` instead of a `Mutex` here. If you just want the locking behavior and not the internal type, consider using `Mutex<()>`.
34   --> $DIR/mutex_atomic.rs:12:5
35    |
36 LL |     Mutex::new(0u32);
37    |     ^^^^^^^^^^^^^^^^
38    |
39    = note: `-D clippy::mutex-integer` implied by `-D warnings`
40
41 error: Consider using an `AtomicIsize` instead of a `Mutex` here. If you just want the locking behavior and not the internal type, consider using `Mutex<()>`.
42   --> $DIR/mutex_atomic.rs:13:5
43    |
44 LL |     Mutex::new(0i32);
45    |     ^^^^^^^^^^^^^^^^
46
47 error: aborting due to 7 previous errors
48