]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/atomic_ordering_ptr.stderr
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / atomic_ordering_ptr.stderr
CommitLineData
f20569fa
XL
1error: atomic loads cannot have `Release` and `AcqRel` ordering
2 --> $DIR/atomic_ordering_ptr.rs:16:20
3 |
4LL | 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
10error: atomic loads cannot have `Release` and `AcqRel` ordering
11 --> $DIR/atomic_ordering_ptr.rs:17:20
12 |
13LL | let _ = x.load(Ordering::AcqRel);
14 | ^^^^^^^^^^^^^^^^
15 |
16 = help: consider using ordering modes `Acquire`, `SeqCst` or `Relaxed`
17
18error: atomic stores cannot have `Acquire` and `AcqRel` ordering
19 --> $DIR/atomic_ordering_ptr.rs:25:24
20 |
21LL | x.store(other_ptr, Ordering::Acquire);
22 | ^^^^^^^^^^^^^^^^^
23 |
24 = help: consider using ordering modes `Release`, `SeqCst` or `Relaxed`
25
26error: atomic stores cannot have `Acquire` and `AcqRel` ordering
27 --> $DIR/atomic_ordering_ptr.rs:26:24
28 |
29LL | x.store(other_ptr, Ordering::AcqRel);
30 | ^^^^^^^^^^^^^^^^
31 |
32 = help: consider using ordering modes `Release`, `SeqCst` or `Relaxed`
33
34error: aborting due to 4 previous errors
35