rust/clippy_tests/examples/needless_borrow.stderr
Georg Brandl 6b6253016f Update stderr files for change in error reporting
rustc now (https://github.com/rust-lang/rust/issues/33525) does not
report an error count anymore, because it was not correct in many cases.
2017-05-26 16:54:07 +02:00

38 lines
1.1 KiB
Plaintext

error: this expression borrows a reference that is immediately dereferenced by the compiler
--> needless_borrow.rs:13:15
|
13 | let c = x(&&a);
| ^^^
|
= note: `-D needless-borrow` implied by `-D warnings`
error: this pattern creates a reference to a reference
--> needless_borrow.rs:20:17
|
20 | if let Some(ref cake) = Some(&5) {}
| ^^^^^^^^
|
= note: `-D needless-borrow` implied by `-D warnings`
error: this expression borrows a reference that is immediately dereferenced by the compiler
--> needless_borrow.rs:27:15
|
27 | 46 => &&a,
| ^^^
|
= note: `-D needless-borrow` implied by `-D warnings`
error: this pattern creates a reference to a reference
--> needless_borrow.rs:50:31
|
50 | let _ = v.iter().filter(|&ref a| a.is_empty());
| ^^^^^
|
= note: `-D needless-borrow` implied by `-D warnings`
error: aborting due to previous error(s)
error: Could not compile `clippy_tests`.
To learn more, run the command again with --verbose.