]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/mutex_atomic.stderr
Rollup merge of #101634 - aDotInTheVoid:rdj-test, r=CraftSpider
[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:8: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:9: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:10: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:12: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:13: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:14: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:15:5
43    |
44 LL |     Mutex::new(0i32);
45    |     ^^^^^^^^^^^^^^^^
46
47 error: aborting due to 7 previous errors
48