]> git.proxmox.com Git - rustc.git/blobdiff - src/tools/clippy/tests/ui/needless_borrow.stderr
New upstream version 1.23.0+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / needless_borrow.stderr
index d90c396645e9cd4f5f1e3d0dc372159f659eb0fe..16962bb48f1ce4a1836e45d418c91e7214a8c181 100644 (file)
@@ -2,7 +2,7 @@ error: this expression borrows a reference that is immediately dereferenced by t
   --> $DIR/needless_borrow.rs:13:15
    |
 13 |     let c = x(&&a);
-   |               ^^^
+   |               ^^^ help: change this to: `&a`
    |
    = note: `-D needless-borrow` implied by `-D warnings`
 
@@ -10,13 +10,13 @@ error: this pattern creates a reference to a reference
   --> $DIR/needless_borrow.rs:20:17
    |
 20 |     if let Some(ref cake) = Some(&5) {}
-   |                 ^^^^^^^^
+   |                 ^^^^^^^^ help: change this to: `cake`
 
 error: this expression borrows a reference that is immediately dereferenced by the compiler
   --> $DIR/needless_borrow.rs:27:15
    |
 27 |         46 => &&a,
-   |               ^^^
+   |               ^^^ help: change this to: `&a`
 
 error: this pattern takes a reference on something that is being de-referenced
   --> $DIR/needless_borrow.rs:49:34
@@ -36,7 +36,5 @@ error: this pattern creates a reference to a reference
   --> $DIR/needless_borrow.rs:50:31
    |
 50 |     let _ = v.iter().filter(|&ref a| a.is_empty());
-   |                               ^^^^^
-
-error: aborting due to 6 previous errors
+   |                               ^^^^^ help: change this to: `a`