rust-clippy/tests/ui/unnecessary_ref.stderr
2020-01-31 20:21:10 +01:00

14 lines
384 B
Text

error: Creating a reference that is immediately dereferenced.
--> $DIR/unnecessary_ref.rs:13:17
|
LL | let inner = (&outer).inner;
| ^^^^^^^^ help: try this: `outer`
|
note: the lint level is defined here
--> $DIR/unnecessary_ref.rs:10:8
|
LL | #[deny(clippy::ref_in_deref)]
| ^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error