6b6253016f
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.
16 lines
380 B
Plaintext
16 lines
380 B
Plaintext
error: needlessly taken reference of both operands
|
|
--> op_ref.rs:13:15
|
|
|
|
|
13 | let foo = &5 - &6;
|
|
| ^^^^^^^
|
|
|
|
|
= note: `-D op-ref` implied by `-D warnings`
|
|
help: use the values directly
|
|
| let foo = 5 - 6;
|
|
|
|
error: aborting due to previous error(s)
|
|
|
|
error: Could not compile `clippy_tests`.
|
|
|
|
To learn more, run the command again with --verbose.
|