summaryrefslogtreecommitdiff
path: root/tests/ui/lint/lint-invalid-atomic-ordering-exchange.stderr
blob: fe6c7e55c62aa8a8321809be769499c2033c8e0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
error: `compare_exchange`'s failure ordering may not be `Release` or `AcqRel`, since a failed `compare_exchange` does not result in a write
  --> $DIR/lint-invalid-atomic-ordering-exchange.rs:26:57
   |
LL |     let _ = x.compare_exchange(0, 0, Ordering::Relaxed, Ordering::AcqRel);
   |                                                         ^^^^^^^^^^^^^^^^ invalid failure ordering
   |
   = help: consider using `Acquire` or `Relaxed` failure ordering instead
   = note: `#[deny(invalid_atomic_ordering)]` on by default

error: `compare_exchange`'s failure ordering may not be `Release` or `AcqRel`, since a failed `compare_exchange` does not result in a write
  --> $DIR/lint-invalid-atomic-ordering-exchange.rs:28:57
   |
LL |     let _ = x.compare_exchange(0, 0, Ordering::Acquire, Ordering::AcqRel);
   |                                                         ^^^^^^^^^^^^^^^^ invalid failure ordering
   |
   = help: consider using `Acquire` or `Relaxed` failure ordering instead

error: `compare_exchange`'s failure ordering may not be `Release` or `AcqRel`, since a failed `compare_exchange` does not result in a write
  --> $DIR/lint-invalid-atomic-ordering-exchange.rs:30:57
   |
LL |     let _ = x.compare_exchange(0, 0, Ordering::Release, Ordering::AcqRel);
   |                                                         ^^^^^^^^^^^^^^^^ invalid failure ordering
   |
   = help: consider using `Acquire` or `Relaxed` failure ordering instead

error: `compare_exchange`'s failure ordering may not be `Release` or `AcqRel`, since a failed `compare_exchange` does not result in a write
  --> $DIR/lint-invalid-atomic-ordering-exchange.rs:32:56
   |
LL |     let _ = x.compare_exchange(0, 0, Ordering::AcqRel, Ordering::AcqRel);
   |                                                        ^^^^^^^^^^^^^^^^ invalid failure ordering
   |
   = help: consider using `Acquire` or `Relaxed` failure ordering instead

error: `compare_exchange`'s failure ordering may not be `Release` or `AcqRel`, since a failed `compare_exchange` does not result in a write
  --> $DIR/lint-invalid-atomic-ordering-exchange.rs:34:56
   |
LL |     let _ = x.compare_exchange(0, 0, Ordering::SeqCst, Ordering::AcqRel);
   |                                                        ^^^^^^^^^^^^^^^^ invalid failure ordering
   |
   = help: consider using `Acquire` or `Relaxed` failure ordering instead

error: `compare_exchange`'s failure ordering may not be `Release` or `AcqRel`, since a failed `compare_exchange` does not result in a write
  --> $DIR/lint-invalid-atomic-ordering-exchange.rs:38:57
   |
LL |     let _ = x.compare_exchange(0, 0, Ordering::Relaxed, Ordering::Release);
   |                                                         ^^^^^^^^^^^^^^^^^ invalid failure ordering
   |
   = help: consider using `Acquire` or `Relaxed` failure ordering instead

error: `compare_exchange`'s failure ordering may not be `Release` or `AcqRel`, since a failed `compare_exchange` does not result in a write
  --> $DIR/lint-invalid-atomic-ordering-exchange.rs:40:57
   |
LL |     let _ = x.compare_exchange(0, 0, Ordering::Acquire, Ordering::Release);
   |                                                         ^^^^^^^^^^^^^^^^^ invalid failure ordering
   |
   = help: consider using `Acquire` or `Relaxed` failure ordering instead

error: `compare_exchange`'s failure ordering may not be `Release` or `AcqRel`, since a failed `compare_exchange` does not result in a write
  --> $DIR/lint-invalid-atomic-ordering-exchange.rs:42:57
   |
LL |     let _ = x.compare_exchange(0, 0, Ordering::Release, Ordering::Release);
   |                                                         ^^^^^^^^^^^^^^^^^ invalid failure ordering
   |
   = help: consider using `Acquire` or `Relaxed` failure ordering instead

error: `compare_exchange`'s failure ordering may not be `Release` or `AcqRel`, since a failed `compare_exchange` does not result in a write
  --> $DIR/lint-invalid-atomic-ordering-exchange.rs:44:56
   |
LL |     let _ = x.compare_exchange(0, 0, Ordering::AcqRel, Ordering::Release);
   |                                                        ^^^^^^^^^^^^^^^^^ invalid failure ordering
   |
   = help: consider using `Acquire` or `Relaxed` failure ordering instead

error: `compare_exchange`'s failure ordering may not be `Release` or `AcqRel`, since a failed `compare_exchange` does not result in a write
  --> $DIR/lint-invalid-atomic-ordering-exchange.rs:46:56
   |
LL |     let _ = x.compare_exchange(0, 0, Ordering::SeqCst, Ordering::Release);
   |                                                        ^^^^^^^^^^^^^^^^^ invalid failure ordering
   |
   = help: consider using `Acquire` or `Relaxed` failure ordering instead

error: aborting due to 10 previous errors