mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
14 lines
383 B
Text
14 lines
383 B
Text
error: Creating a reference that is immediately dereferenced.
|
|
--> $DIR/unnecessary_ref.rs:23:17
|
|
|
|
|
23 | let inner = (&outer).inner;
|
|
| ^^^^^^^^ help: try this: `outer.inner`
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/unnecessary_ref.rs:20:8
|
|
|
|
|
20 | #[deny(clippy::ref_in_deref)]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|