Sign in
rust
/
rust-clippy
/
c362efa42048d632c968a84002ca29396f0eb115
/
.
/
tests
/
ui
/
op_ref.stderr
blob: 32596944570eeab1f299da0035bc3927b5756504 [
file
] [
log
] [
blame
]
error
:
needlessly taken reference of both operands
-->
$DIR
/
op_ref
.
rs
:
13
:
15
|
13
|
let
foo
=
&
5
-
&
6
;
|
^^^^^^^
|
=
note
:
`-D op-ref`
implied
by
`-D warnings`
help
:
use
the values directly
|
13
|
let
foo
=
5
-
6
;
|