]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/atomic_ordering_ptr.stderr
Auto merge of #71321 - matthewjasper:alloc-min-spec, r=sfackler
[rust.git] / src / tools / clippy / tests / ui / atomic_ordering_ptr.stderr
1 error: atomic loads cannot have `Release` and `AcqRel` ordering
2   --> $DIR/atomic_ordering_ptr.rs:16: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_ptr.rs:17: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_ptr.rs:25:24
20    |
21 LL |     x.store(other_ptr, 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_ptr.rs:26:24
28    |
29 LL |     x.store(other_ptr, Ordering::AcqRel);
30    |                        ^^^^^^^^^^^^^^^^
31    |
32    = help: consider using ordering modes `Release`, `SeqCst` or `Relaxed`
33
34 error: aborting due to 4 previous errors
35