summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/op_ref.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 18:31:44 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 18:31:44 +0000
commitc23a457e72abe608715ac76f076f47dc42af07a5 (patch)
tree2772049aaf84b5c9d0ed12ec8d86812f7a7904b6 /src/tools/clippy/tests/ui/op_ref.stderr
parentReleasing progress-linux version 1.73.0+dfsg1-1~progress7.99u1. (diff)
downloadrustc-c23a457e72abe608715ac76f076f47dc42af07a5.tar.xz
rustc-c23a457e72abe608715ac76f076f47dc42af07a5.zip
Merging upstream version 1.74.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/clippy/tests/ui/op_ref.stderr')
-rw-r--r--src/tools/clippy/tests/ui/op_ref.stderr7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/tools/clippy/tests/ui/op_ref.stderr b/src/tools/clippy/tests/ui/op_ref.stderr
index fe36c0116..f03e24b84 100644
--- a/src/tools/clippy/tests/ui/op_ref.stderr
+++ b/src/tools/clippy/tests/ui/op_ref.stderr
@@ -5,13 +5,14 @@ LL | let foo = &5 - &6;
| ^^^^^^^
|
= note: `-D clippy::op-ref` implied by `-D warnings`
+ = help: to override `-D warnings` add `#[allow(clippy::op_ref)]`
help: use the values directly
|
LL | let foo = 5 - 6;
| ~ ~
error: taken reference of right operand
- --> $DIR/op_ref.rs:56:13
+ --> $DIR/op_ref.rs:58:13
|
LL | let z = x & &y;
| ^^^^--
@@ -19,7 +20,7 @@ LL | let z = x & &y;
| help: use the right value directly: `y`
error: taken reference of right operand
- --> $DIR/op_ref.rs:89:17
+ --> $DIR/op_ref.rs:92:17
|
LL | let _ = one * &self;
| ^^^^^^-----
@@ -27,7 +28,7 @@ LL | let _ = one * &self;
| help: use the right value directly: `self`
error: taken reference of right operand
- --> $DIR/op_ref.rs:90:17
+ --> $DIR/op_ref.rs:94:17
|
LL | let _ = two + &three;
| ^^^^^^------