]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/atomic_ordering_bool.stderr
Rollup merge of #71633 - a1phyr:infallible_error, r=dtolnay
[rust.git] / src / tools / clippy / tests / ui / atomic_ordering_bool.stderr
1 error: atomic loads cannot have `Release` and `AcqRel` ordering
2   --> $DIR/atomic_ordering_bool.rs:14:20
3    |
4 LL |     let _ = x.load(Ordering::Release);
5    |                    ^^^^^^^^^^^^^^^^^
6    |
7    = note: `-D clippy::invalid-atomic-ordering` implied by `-D warnings`
8    = help: consider using ordering modes `Acquire`, `SeqCst` or `Relaxed`
9
10 error: atomic loads cannot have `Release` and `AcqRel` ordering
11   --> $DIR/atomic_ordering_bool.rs:15:20
12    |
13 LL |     let _ = x.load(Ordering::AcqRel);
14    |                    ^^^^^^^^^^^^^^^^
15    |
16    = help: consider using ordering modes `Acquire`, `SeqCst` or `Relaxed`
17
18 error: atomic stores cannot have `Acquire` and `AcqRel` ordering
19   --> $DIR/atomic_ordering_bool.rs:23:20
20    |
21 LL |     x.store(false, Ordering::Acquire);
22    |                    ^^^^^^^^^^^^^^^^^
23    |
24    = help: consider using ordering modes `Release`, `SeqCst` or `Relaxed`
25
26 error: atomic stores cannot have `Acquire` and `AcqRel` ordering
27   --> $DIR/atomic_ordering_bool.rs:24:20
28    |
29 LL |     x.store(false, Ordering::AcqRel);
30    |                    ^^^^^^^^^^^^^^^^
31    |
32    = help: consider using ordering modes `Release`, `SeqCst` or `Relaxed`
33
34 error: aborting due to 4 previous errors
35